Last question!!
Would this work?
PHP Code:global $cart;
$chk_cats = $_SESSION['cart']->in_cart_check('products_id','15') + $_SESSION['cart']->in_cart_check('products_id','16' + $_SESSION['cart']->in_cart_check('products_id','42' + $_SESSION['cart']->in_cart_check('products_id','43');
// echo 'shipping ' . $type . ' chk_cats: ' . $chk_cats . '<br>';
if ($type == 'Express Mail International (EMS) Flat-Rate Envelope' && $chk_cats > 0) {
if ($type == 'Priority Mail International Flat-Rate Envelope' && $chk_cats > 0) {
$chk_cats = $_SESSION['cart']->in_cart_check('products_id','42') + $_SESSION['cart']->in_cart_check('products_id','43');
// echo 'shipping ' . $type . ' chk_cats: ' . $chk_cats . '<br>';
if ($type == 'First Class Mail International Package' && $chk_cats > 0) {
// skip shipping
} else {



