picandnix:
it's good to see you back, I hope your better now?
This is the piece of code I have in tpl_index_categories.php
<!-- begin edit for ZX Slideshow -->
<?php
if($this_is_home_page) {
if (ZX_SLIDESHOW) { ?>
<?php require($template->get_template_dir('zx_slideshow.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/zx_slideshow.php'); ?>
<?php }
}?>
<!-- end edit for ZX Slideshow -->
:shocking: I guess it was me who gave that code you used... :lamo:
Try this instead:
<?php
if($this_is_home_page) {
if (ZX_SLIDESHOW_STATUS == 'true') { ?>
<?php require($template->get_template_dir('zx_slideshow.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/zx_slideshow.php'); ?>
<?php }
}?>