Remove the flash promo block for logged in users. This work is provided by HoustonLively, a dedicated dolphin user and developer. Thank you HL.
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())
if( getParam( 'enable_flash_promo' ) != 'on' )