
Originally Posted by
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
PHP Code:
<!-- 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 -->
I guess it was me who gave that code you used... 
Try this instead:
Code:
<?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 }
}?>