The following appears to be working for me in version 1.3.0.1 -- I just wrote this code today:
Edit /includes/modules/order_total/ot_group_pricing.php
In the function
PHP Code:
function get_order_total() {
Above the line
PHP Code:
return $order_total;
I put
PHP Code:
$excluded_category_qty = $_SESSION['cart']->in_cart_check('master_categories_id','2');
if (($_SESSION['cart']->in_cart_check('master_categories_id','2') > 0)) $order_total = $order_total - $excluded_category_qty;
Where '2' is the master category I wanted to exclude from group pricing.
I hope that helps!
Bookmarks