I was looking for exactly this solution. Thank you. I would note that when I did an "exact" search using jEdit for that paragraph it did not find it. I found it by searching for part of one line of code, and then comparing to see if it was substantially the same. I backed up the original file as .php.old on the server. Cut and paste the change you suggested, and uploaded the file. It worked the first time. Again. Thank you.



Quote Originally Posted by clydejones View Post
Open includes/templates/cold_steel/common/tpl_main_page.php

Find the following section of code

PHP Code:
<!--bof- banner #6 display -->
<!--<?php
//  if (SHOW_BANNERS_GROUP_SET6 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET6)) {
//    if ($banner->RecordCount() > 0) {
?>-->
<!--<div id="bannerSix" class="banners"><?php echo zen_display_banner('static'$banner); ?></div>-->
<!--<?php
//    }
//  }
?>-->
<!--eof- banner #6 display -->
And replace it with the following code:

PHP Code:
<!--bof- banner #6 display -->
<?php
  
if (SHOW_BANNERS_GROUP_SET6 != '' && $banner zen_banner_exists('dynamic'SHOW_BANNERS_GROUP_SET6)) {
    if (
$banner->RecordCount() > 0) {
?>
<div id="bannerSix" class="banners"><?php echo zen_display_banner('static'$banner); ?></div>-->
<?php
    
}
  }
?>
<!--eof- banner #6 display -->