
Originally Posted by
kobra
manifest,
Is this a template monster template?
Looks like you beat me to it!
bugyoutoo: look right around Line 139 in includes/templates/yourtemplate/templates/tpl_product_info_display.php
Find the section of code that looks like this:
Code:
<!--bof Additional Product Images -->
<?php
/**
* display the products additional images
*/
// require($template->get_template_dir('/tpl_modules_additional_images.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_additional_images.php'); ?>
<!--eof Additional Product Images -->
and remove the comment slashes before the require statement so it looks like this:
Code:
<!--bof Additional Product Images -->
<?php
/**
* display the products additional images
*/
require($template->get_template_dir('/tpl_modules_additional_images.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_additional_images.php'); ?>
<!--eof Additional Product Images -->