What's wrong with the IF statement? This is what I did!
Is this what you mean? nothing happened! Most likely its something I did I'd say!PHP Code:$skip_type = false;
echo 'I SEE TYPE: ' . $type . '<br>';
if ( ($type == 'First-Class Mail International Large Envelope' || $type == 'First-Class Mail International Package' || $type == 'Priority Mail International Flat Rate Envelope' || $type == 'Priority Mail International Small Flat Rate Box' || $type == 'Express Mail International Flat Rate Envelope' || $type == 'Priority Mail International Small Flat Rate Box') && ($chk_products15 + $chk_products16 + $chk_products42 + $chk_products43 + $chk_products73 + $chk_products74 + $chk_products76 + $chk_products77 + $chk_products81 + $chk_products82 + $chk_products83 + $chk_products84) > 0) { $skip_type = true;
}
echo 'I SEE TYPE: ' . $type . '<br>';
if ( ($type == 'Priority Mail International Medium Flat Rate Box' ) && ($chk_products42 + $chk_products43 + $chk_products74 + $chk_products77 + $chk_products83 + $chk_products84 ) > 0) {
$skip_type = true;
}
if ($skip_type) {
// do not show excluded shipping types
} else {



