@gilby

Originally Posted by
gilby
Q1 Yes!
Q3 Or.. Is Cart Upsell compatible with this mod?
Cart Upsell expects one cross sell only not many.
So you can use it, as is, to display one of the cross sells.
Work out which cross sell you want to use there and edit that mod so you rename references to "products_xsell" table to "products_xsell1" for example if you want to use the first cross sell for that purpose.
I have tried what you suggested but its not working for some reason.
this is what I did:
I added this line to
includes/extra_datafiles/multi_xsell_definitions.php
PHP Code:
define('TABLE_PRODUCTS_XSELL', DB_PREFIX . 'products_xsell1');
then I have to change in
includes/modules/MY_TEMPLATE/cart_upsell.php
PHP Code:
if (@file_exists(DIR_WS_MODULES . zen_get_module_directory('xsell_products.php'))) {
to
PHP Code:
if (@file_exists(DIR_WS_MODULES . zen_get_module_directory('multi_xsell_products.php'))) {
and
PHP Code:
require($template->get_template_dir('tpl_modules_xsell_products.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_xsell_products.php');
to
PHP Code:
require($template->get_template_dir('tpl_modules_multi_xsell_products.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_multi_xsell_products.php');
but this still does not work. can you advise any further?
Many Thanks