I noticed that the adverts in the frontend of the script was being shown to all users including paid users.
The fix is below
open _footer.php
	
	
	
		
Replace with
	
	
	
		
								The fix is below
open _footer.php
		Code:
	
	<!-- footer ads -->
    <div class="footerAds">
        <?php echo SITE_CONFIG_ADVERT_SITE_FOOTER; ?>
    </div>
		Code:
	
	<!-- footer ads -->
    <div class="footerAds">
	<?php
        if (($Auth->loggedIn() == true) && ($Auth->level == 'free user'))
        {
            echo SITE_CONFIG_ADVERT_SITE_FOOTER;
        }
        ?>
    </div> 
				
		