Skip to content

Instantly share code, notes, and snippets.

@DivaVocals
Last active November 1, 2015 16:54
Show Gist options
  • Save DivaVocals/a8090b89d651c0f1cea2 to your computer and use it in GitHub Desktop.
Save DivaVocals/a8090b89d651c0f1cea2 to your computer and use it in GitHub Desktop.
Zen Cart - Display Banner on any page except the product_info page
/* 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