Ok, need a little help. I just upgraded my site to 7.08 from 7.06. All went well but there is a new inc/designinc.php file. In the old file, I made a change that caused the promo banner code to not display for users that were signed in.
The file changed so much that I don't know how to enable that adjustment again.
Can someone help me turn off the promo banner for logged in members? Want to make it only visible for guests.
Used to do it like this:
In the file: /inc/design.inc.php
Find:
function getPromoCode() {
global $site;
$sSiteUrl = BX_DOL_URL_ROOT;
if( getParam( 'enable_flash_promo' ) != 'on' )
Change to:
function getPromoCode() {
global $site;
$sSiteUrl = BX_DOL_URL_ROOT;
if(!isMember()) <---------------------- ADD THIS
if( getParam( 'enable_flash_promo' ) != 'on' )
(God this forum code sucks......)
