For anyone interested there is a way around to showing the testimonials on the main page if your site has the side boxes disabled on the main page. It's a little bit of work but we just did it with one of my websites and it works great.
Using Banner Display Groups set a banner to display only on the main page. We use the group 4 for this.
Look for this code on the tpl_main_page.php file
PHP Code:
<!-- bof BANNERS GROUPSET 4 -->
<?php
if (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerFour" class="banners">
<?php echo zen_display_banner('static', $banner); ?>
</div>
<?php
}
}
?>
<!-- eof BANNERS GROUPSET 4 -->
and replace for
PHP Code:
<!-- bof BANNERS GROUPSET 4 -->
<?php
if ($this_is_home_page && (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4))) {
//if (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerFour" class="banners">
<?php echo zen_display_banner('static', $banner); ?>
</div>
<?php
}
}
?>
<!-- eof BANNERS GROUPSET 4 -->
This piece of code will allow to show this banner only on the main page.
Now go to banner manager and add the testimonials you want to show on main page in the html text box. Customize to your taste. It's a little bit of work entering manually each testimony but is a one time job and it does the trick, which is showing rotating testimonials on the main page.
To view how it looks visit www.byvalenti.com
Hope this helps