That part works fine, however (you're bound to hate me right now)
These two lines:
$chk_1 = $_SESSION['cart']->in_cart_check('products_weight','1');
$chk_595 = $_SESSION['cart']->in_cart_check('products_weight','5.95');
need to be:
$chk_1 = $_SESSION['cart']->in_cart_check('products_attributes_weight','1');
$chk_595 = $_SESSION['cart']->in_cart_check('products_attributes_weight','5.95');
as each product has two entries in the products_attributes table.
I've attempted to make the necsessary changes to includes/classes/shopping_cart.php but it just comes up with an error
Line 1539: $product_check = $db->Execute("select " . $check_what . " as check_it from ".[B]TABLE_PRODUCTS_ATTRIBUTES[/B]." where products_id='" . $testing_id . "' limit 1");
Error:
WARNING: An Error occurred, please refresh the page and try again