ahehe, nevermind folks, using my brains a little bit I found a solution. :clap:
Opened Modules/MY_TEMPLATE/ultimate_cross_sell_products.php
Replaced the following:
$lc_button = '<br /><a href="' . zen_href_link(zen_get_info_page((int)$cross_sell_query->fields['products_id']), '&products_id=' . (int)$cross_sell_query->fields['products_id']) . '">' . MORE_INFO_TEXT . '</a><br />';
with the following:
$lc_button = '<br class="clearBoth">' . zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($cross_sell_query->fields['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product', $request_type), 'post', 'enctype="multipart/form-data"') . '<input type="hidden" name="cart_quantity" value="1" />' . zen_draw_hidden_field('products_id', (int)$cross_sell_query->fields['products_id']) . zen_image_submit(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</form>';
Thanks for the great mod!!
yaseent:
Hi, I may need some assistance with slight tweaking.
I've installed the Ultimate Cross Sell mod. Great functionality, variety, and most of all ease of use.
However, I decided to make the mod more...accessible to customers, not as a means to force additional sales, but simply to let them know, there's an easier way to find the products on the website. So what I did was, changed the Buy Now buttons on my product listing pages, to More Info links. So, customer clicks more info, finds himself on the product page, and then sees Related products, for insrance, accessories, all via the Cross Sell mod. Now the problem is, the related products ALSO, instead of showing Buy Now buttons, have More Info buttons, so instead of adding the additional accessory to their cart, it directs them to the product info page of the accessory, away from the main product that they wanted to buy in the first place. Is there an way to keep More Info links in the product listing pages, but have the cross sell mod use the Buy Now buttons? Thank you!