
By Federal law, I need to deny shipping to certain states. I have tested this snippet of code in the "CheckIt function" box of the Commerce Setup>Order System>Checkout page.
Code: Select all
if (document.billing.ShipState != "AL")
{
alert("Sorry, we cannot legally ship to this state.");
return(false);
}
Here's one of the variations I used. Don't laugh.
Code: Select all
if (document.billing.ShipState != "AL", "AR", "KS", "ME", "MD", "MA", "MS", NJ", "OK", "PA", "UT") {
alert("Sorry, we cannot legally ship to this state.");
return(false);
}
Thanks for looking. I hope someone has a simple solution.

.