I added a Free Shipping Calculator on our shopping cart page awhile back and it's been successful. The script I am using is:
<td align="right"><script language="javascript" type="text/javascript">
free_limit = 100.00;
amount_left_tmp = free_limit - ss_subtotal;
amount_left = amount_left_tmp.toFixed(2);
if (amount_left > 0){document.write('U.S. Orders - Purchase $' + amount_left + ' more for FREE shipping!');}
</script>
We are now expanding our sales outside the U.S., so I'd like this feature to appear only if the Ship To country is the United States (and "disappear" if a different country is selected.
Is that an easy "If/Then" function?
Any guidance would be greatly appreciated. Thanks in advance!