Can someone share a URL of Better Together in action? Preferably a direct link to a page with related items?
Thanks!
Printable View
Can someone share a URL of Better Together in action? Preferably a direct link to a page with related items?
Thanks!
http://www.thegemtree.com/index.php?...oducts_id=1435
Here you go. At the moment, the text for it is small in comparison, not sure how to make it larger. I think it is a great mod.
Cheers
HM: the id for the cross sell text is discountPolicy (and discountPolicyReverse if you're using the reverse logic as well). So you can style this any way you wish.
Scott
I am running the contrib as well.
You can find it here.
http://www.izadra.com/index.php?main...products_id=64
I would like to say that this mod really is great, and the support from the author has been superb in my experience.
Kind words - thank you.
Something to look forward to: sometime in the second quarter I'm going to deliver a Better Together sidebox to help shopowners make their Better Together discounts more visible. I think you'll like it. :)
Scott
Scott,
Great mod, thanks.
Just wondering if it is possible to do,
Buy A and B and get 50% off C
ie a bundle of products together to get a price.
See your PM.
This could be exactly what I'm looking for - I've read the readme and can't figure out how to achieve this:
-> buy something from category 1, and something from category, get x% discount on both purchases (whether they are single quantities or multiple).
Thanks in advance for any assistance, hopefully I'm not missing something obvious :)
Better Together only discounts the latter item.
Hi there
i have installed and appears to be working at checkout but the marketing code is not displaying any text on the product pages. I have added this code exactly to the tpl_product_info_display.php page: <?php
$value = "ot_better_together.php";
include_once(zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] .
'/modules/order_total/', $value, 'false'));
include_once(DIR_WS_MODULES . "order_total/" . $value);
$discount = new ot_better_together();
echo '<div class="content" id="discountPolicy">';
$resp = $discount->get_discount_info($_GET['products_id'], $current_category_id);
for ($i=0, $n=count($resp); $i<$n; $i++) {
echo $resp[$i] . "<br />";
}
echo '</div>';
// "reverse" discount logic - new in Better Together 1.3
echo '<div class="content" id="discountPolicyReverse">';
$resp = $discount->get_reverse_discount_info($_GET['products_id'], $current_category_id);
for ($i=0, $n=count($resp); $i<$n; $i++) {
echo $resp[$i] . "<br />";
}
echo '<br /></div>';
echo '<br class="clearBoth" />';
?>
.....
Not seeing anything on product pages. Any idea where I can start to troubleshoot this?
Thanks in advance