Let's say you want Products in categories_id 10, 12 and 15 to be in Footer 2 ... SHOW_BANNERS_GROUP_SET5 ... use the code in red to place that limit ...
Code:
<!--bof-banner #5 display -->
<?php
if ( in_array($current_category_id, array(10, 12, 15)) ) { // limit to 10, 12 and 15
if (SHOW_BANNERS_GROUP_SET5 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET5)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerFive" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<?php
}
}
} // limit to 10, 12 and 15
?>
<!--eof-banner #5 display -->
NOTE: the $current_categories_id is the immediate categories_id that you are in ... if the $cPath is showing that is the categories_id on the right side ...
Bookmarks