Let's say you want the Per Item item shipping module to turn off or hide when 1 or more products from categories_id 17 is in the shopping cart ...
Edit the shipping module:
/includes/modules/shipping/item.php
PHP Code:
// disable only when entire cart is free shipping
if (zen_get_shipping_enabled($this->code)) {
if ($_SESSION['cart']->in_cart_check('master_categories_id','17') > 0) {
$this->enabled = ((MODULE_SHIPPING_ITEM_STATUS == 'True') ? true : false);
}
}
This will cause the $this->enabled to evaluate as false and not show the Per Item item shipping module ...
Bookmarks