Has anyone been able to create on zen-cart the advertising board, similar to the one on walmart.com, where they have 4 seperate banners on constant rotation
Has anyone been able to create on zen-cart the advertising board, similar to the one on walmart.com, where they have 4 seperate banners on constant rotation
http://www.zen-cart.com/index.php?ma...roducts_id=855
Mod above may help
This module looks like it does the trick however I need some thing with a management back end so that my client can manage the banner.
Has anyone been able to do as rossmann requested? I'm sure it's a matter of updating the links, but I'm at a lost. I have this code that I want to pull from banner position 3
<li><a href="#"><img alt="" src="/images/725x300banner.jpg" /></a>
Any ideas? There would be a maximum of 3 lists.
I know I'm close. It's pulling from the admin but I'm only getting one banner out of the two that are loaded in the database. can someone please review my code and tell me where I went wrong?
<?php
if (SHOW_BANNERS_GROUP_SET3 != '' && $this_is_home_page && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
if ($banner->RecordCount() > 0) {
?>
<!-- bof Easy Slider 1.7 -->
<div id="container">
<div id="content">
<div id="slider">
<ul>
<li id="bannerThree" class="banners"><?php echo zen_display_banner('static', $banner); ?></li>
</ul>
</div>
</div>
</div>
<!-- eof Easy Slider 1.7 -->
<?php
}
}
?>