I have seen some of your other add-ons is there one that would accomplish this? V 1.5.1
Thanks again.
I have seen some of your other add-ons is there one that would accomplish this? V 1.5.1
Thanks again.
was wondering if someone could help me...i can get get the two for one offers to work using this plugin but can not get any linkages working...any help would be great
Can you be more specific about what doesn't work?
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
thanks for getting back to me swguy
i cant get any category to category discounts to work or product to product
the two for one works perfectly though
When you say "it doesn't work," can you be more specific? In what way does it not work? What exactly are you doing in the two for one case that does work, and what are you doing in the product to product case that does not? Show your code.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
When I add a two for one discount it appears in the checkout process as "Better Together Discount" with the correct discount, but when I do a product to product or category to category discount nothing actually happens.
The code is attached
function setup() {
// Using Better Together Admin? Uncomment this out
/*
if (!IS_ADMIN_FLAG) {
require(DIR_WS_MODULES . 'better_together_admin.php');
}
*/
// Add all linkages here
$this->add_twoforone_cat(36);
$this->add_cat_to_cat(33,34,"%", 15);
// Some examples are provided:
/*
Any help is apprecaited
That's an add_cat_to_cat - I asked you for an add_prod_to_prod. But since cat 36 seems to work, please try
I suspect that will work, which means that the real issue is with categories only, and you need to look at the help on categoriesCode:function setup() { $this->add_cat_to_cat(36,36,"%", 15); } } // closing paren for class
http://www.thatsoftwareguy.com/zenca...ry_issues.html
to see how they work and what can go wrong.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
Hi swguy,
Excellent plugin, thank you! It seems to be working fine except for error logs that get generated each time I edit an order even when it does not include any "better together" items. Order editing itself works fine (correct updates are saved and correct notifications are sent), but after clicking "update order" I get a Server 500 error, and a new error log which reads:
PHP Fatal error: Call to undefined function zen_get_tax_rate_from_desc() in /SITE/includes/modules/order_total/ot_better_together.php on line 465
Line 465 in my copy of that file is:
$tax_rate = zen_get_tax_rate_from_desc($key);
I'm using Zen Cart 1.5.1 and Better Together 2.4 (released 4/20/2013). For tax handling I use TaxCloud. Any idea what could be causing these errors and how I can fix them? (Please be gentle, I'm not a php developer, just a user...)
Thank you!
Magz
I haven't used this plugin in a while, before I do I need to know if this plugin will work or if you have a commercial plugin that will...
I have 4 categories
Customer adds 2 items from any of the 4 categories
All items have Attributes
Customer gets 50% off the lesser valued item
Better Together doesn't handle requirements like this. Look at Discount Chooser on my site.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.