Last active
November 1, 2015 16:54
-
-
Save DivaVocals/a8090b89d651c0f1cea2 to your computer and use it in GitHub Desktop.
Zen Cart - Display Banner on any page except the product_info page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://www.zen-cart.com/showthread.php?206857-Header-Banner-Choosing-how-to-display&p=1192586#post1192586 */ | |
/* includes/templates/MYTEMPLATE/common/tpl_main_page.php - Display banner on any page except the product_info page */ | |
<?php if (in_array($current_page_base,explode(",",'product_info')) ) { | |
// do nothing | |
} else { | |
?> | |
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) { | |
<?php | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment