Since categories 15 and 16 are the only ones that cannot ship FedEx (I probably should have mentioned that, sorry), I changed it to this and it appears to work properly. Do you foresee any problems with anything?
Thanks again.PHP Code:if (!IS_ADMIN_FLAG) {
global $cart;
$chk_cat = 0;
$chk_cat += $_SESSION['cart']->in_cart_check('master_categories_id','15');
$chk_cat += $_SESSION['cart']->in_cart_check('master_categories_id','16');
if ($chk_cat > 0) {
$this->enabled = false;
}
}


Reply With Quote
