Hi,
I installed Multi Cross Sell Module and it works fine. I've got recommended products but the title of the box "We recommend" is not shown. I haven't got a clue why. Here are how my files look like:
tpl_product_info_display.php
<!-- BEG: Multi Cross-Sell mod -->
<?php
// THIS CODE WOULD BE ADDED INTO YOUR TPL_PRODUCT_INFO_DISPLAY.PHP WHEREVER YOU WANT TO DISPLAY ALL THE CROSS_SELL BOXES:
if(defined('MXSELL_ENABLED') && MXSELL_ENABLED == 'true') {
for ( $mxsell = 1; $mxsell <= MXSELL_NUM_OF_TABLES; $mxsell++ ) { // show all cross sells
require($template->get_template_dir('tpl_modules_multi_xsell_products.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_multi_xsell_products.php');
}
}
?>
<!-- END: Multi Cross-Sell mod -->
2. product_info.php
define('TEXT_MULTI_XSELL_PRODUCTS', 'We Also Recommend:');
Here is the link: http://demo-shop.infocom.co.me/
Thnx.


Reply With Quote
