Hi Scott,
What I am looking to do is give 10% of any item in multiple categories with the purchase of one item. My code currently looks like this:
$this->add_prod_to_cat(116, 10, "%", 10);
$this->add_prod_to_cat(116, 11, "%", 10);
$this->add_prod_to_cat(116, 12, "%", 10);
$this->add_prod_to_cat(116, 28, "%", 10);
$this->add_prod_to_cat(116, 15, "%", 10);
$this->add_prod_to_cat(116, 6, "%", 10);
My problem is that it find one item that the discount applies to (say in cat 10) and it basically shuts down despite there being other items in the cart that qualify for a discount. Is there a way to get it to apply a discount to correctly?
Additionally (and this might be slightly off) but does category discounts work on the top category (i.e. anything in the store)
Thanks,
Rob


Reply With Quote

