Thank you Dr. Byte!
I saw that post:
but it didn't work.
Code:
/includes/classes/shopping_cart.php
at lines 1401 and 1435 you have code that looks like this:
Code:
// reset($this->contents); // breaks cart $check_contents = $this->contents; while (list($products_id, ) = each($check_contents)) {
add an extra line in both places, making it look like this:
Code:
// reset($this->contents); // breaks cart $check_contents = $this->contents; reset($check_contents); while (list($products_id, ) = each($check_contents)) {
Code:
I THINK you need to adjust a setting in attributes which applies the discounts to the attributes...
FROM SCHOOLBOY
Schoolboy: Do you know what the setting is I would adjust? or how to get there? (sorry, I need hand holding...I'm still wet behind the ears!)