Never mind I'll just uninstall it then because it doesn't do what I need it to do. Thanks
Printable View
Never mind I'll just uninstall it then because it doesn't do what I need it to do. Thanks
Can better Better Together do this kind of thing:
"Enter this code at checkout and get a free thingamajig with your purchase of $50 or more”
or am I barking up the wrong tree?
No - Better Together is "Buy A, get B at a discount."
I've read through all 22 pages of this thread but I'm still confused if BT can do the following:
TOP LEVEL CAT
|
SUB CAT1
|
Product1
Product2
Product3
Buy at least one of every item in SUB CAT1 and get a 10% discount on your order total...
I don't want it to mix 'n match between sub categories...
To give you a better idea (as I am pants at explaining these things) - Sub Cat1 will contain approx 6 products in a design, if the customer chooses to order every product in this design then they get a 10% discount, there are several designs in several sub cats.
Thanks!
No - this is not what Better Together does. Better Together is "Buy A, get B at a discount."
Just a question on if this can be done. Can there be an image of the product if your doing product to product instead not to a category.
Lets say buy product 1 and get product 2 at 50% off. where there would be an image of product 2. instead of the customer having to click on the link for product 2 just to see what it is. It would already have the image there, and if they want to buy it they can click the image or the link.
Do you think this would sell other products better if it was this way. This way your saving the customer extra clicking. because if it is something they do not want now they have to click back to the product they do want.
Can this be done? If so how do i do it? :unsure:
This is the next item on the Better Together roadmap. Stay tuned.
Hi I have just received my zip files but I can not find where on earth you have hidden the includes/modules/order_total/ot_better_together.php . It is not in my zipped version I have received. I need it asap please ...
Thanks you
PS. I have emailed you direct as well just in case
I did have look but all I need to know if this is correct. I have the admin mod. So I need to insert this bit -
if (!IS_ADMIN_FLAG) {
require(DIR_WS_MODULES . 'better_together_admin.php');
}
Code:function setup() {
// Add all linkages here
// Some examples are provided:
/*
$this->add_cat_to_prod(4, 83, "%", 100);
// Buy product 83, get product 53 at 50% off
$this->add_prod_to_prod(83, 53, "%", 50);
// Buy product 83, get one free
$this->add_prod_to_prod(83, 83, "%", 100);
// Buy product 83, get an item from category 14 free
$this->add_prod_to_cat(83, 14, "%", 100);
// Buy an item from category 21, get an item from category 14 free
$this->add_cat_to_cat(21, 14, "%", 100);
// Buy item 12, get a second one free.
$this->add_twoforone_prod(12);
// Buy any item from category 10, get a second identical one free
$this->add_twoforone_cat(10);
// $this->add_twoforone_prod(17);
$this->add_prod_to_prod(26, 27, "%", 100);
$this->add_prod_to_prod(83, 15, "%", 50);
$this->add_prod_to_prod(83, 20, "%", 25);
$this->add_cat_to_cat(14, 14, "%", 100);
$this->add_prod_to_prod(3, 25, "%", 50);
*/
/* Is this correct where it is below the line ?? */
if (!IS_ADMIN_FLAG) {
require(DIR_WS_MODULES . 'better_together_admin.php');
}
}
}
?>
Mine isn't working. Can anyone please offer a helping hand?
I am using Zenrt 1.3.8a with Better Together Contribution + Better Together Admin
So I don't need to (want to) enter manual discounts and hard code the files. Therefore as per instruction, I have inserted the extra code to my tpl_product_info_display.php in my own template folder. I have also entered the code into includes/modules/order_total/ot_better_together.php.
I then have created the discount product > Product at 15%
(2) Buy: Jojoba Oil 25/50/100ml (PROD 80) Get: Midgie/Mossie Bite Balm 125/250ml (PROD 77) Discount: 15%
Problem I can not see the like in the demo any of this type of text. What is missing? I have upload all the files.
------------------------------------------------------------------------------------
Better Together Discounts
Buy this item, get a Die Hard With A Vengeance Linked at 50% off
------------------------------------------------------------------------------------
Quote:
4. Edit the file
includes/modules/order_total/ot_better_together.php
and in the setup() function at the bottom of the file, add the lines:
if (!IS_ADMIN_FLAG) {
require(DIR_WS_MODULES . 'better_together_admin.php');
}
Quote:
6. Customize the tpl_product_info_display.php file to advertise
your discounts. Put the file
includes/templates/template_default/templates/tpl_product_info_display.php
into includes/templates/<Your Template>/templates, and be sure
you have installed tpl_better_together_marketing.php in this
same directory. Then add this block of code to the
tpl_product_info_display.php file
<?php
require($template->get_template_dir('/tpl_better_together_marketing.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_better_together_marketing.php');
?>
The placement of this code is a matter of personal preference.
Try placing it below the product description (line 87 in
tpl_product_info_display.php in 1.3.7), and adjust to your taste.