Does anyone know how to remove the promo block for logged in members on D7.0.8. I typically use the mod developed by HoustonLively but there now seems to be a complex array statement for the promo block. I have no idea why, after all these years, they didn't just include this in the code. I can't think of any reason why a logged in user would need that huge promo block - it just gets in the way. I'll paste the original mod below - if anyone wants to take a shot at it, or already knows, I would appreciate it.
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' )