Now if you wanted to use the stock banner groups/positions with the ZX Slideshow code you could adapt some of the the "zx_slideshow.php" file's code to suit your needs. For example in the "tpl_main_page.php" file you could add modified code from the "zx_slideshow.php" file near the banner position you want to use.. You could then remove ALL of the current stock banner code in the "tpl_main_page.php" file. (this is not ALL of the "zx_slideshow.php" file, just a small example of how the code might be adapted)
Code:
<div class="slider-wrapper theme-<?php echo ZX_SLIDESHOW_THEME; ?>">
<div id="slider" class="nivoSlider">
<?php
if (SHOW_BANNERS_GROUP_SET1 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET1)) {
if ($banner->RecordCount() > 0) {
echo zen_display_zx_slide('static', $banner);
}
}
?>
<?php
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
if ($banner->RecordCount() > 0) {
echo zen_display_zx_slide('static', $banner);
}
}
?>
This all assumes that you want the slideshow to display in ONE location on the page using only the stock banner groups..
If you were instead wanting to use only ONE banner group per SLIDESHOW (versus one image per banner group), then this of course will not work..