Then you could use the code:
Code:// bof: skip certain categories and disable they are in the cart for master_categories_id 7, 10 and 14 if (IS_ADMIN_FLAG == false) { global $cart; $chk_skip_categories = 0; $chk_skip_categories += $_SESSION['cart']->in_cart_check('master_categories_id','7'); $chk_skip_categories += $_SESSION['cart']->in_cart_check('master_categories_id','10'); $chk_skip_categories += $_SESSION['cart']->in_cart_check('master_categories_id','14'); if ($chk_skip_categories > 0) { $this->enabled = false; } } // eof: skip certain categories and disable they are in the cart for master_categories_id 7, 10 and 14


Reply With Quote

