Hi, my target audience lives in a country that doesn’t have zip codes. How can I hide it from the 2 step order form.
Thanks for your help.
1 Like
You can do something like this:
<script>
$(document).ready(function() {
$('.elStateDiv').hide(); // this to hide the state, you can remove this line if don't want to hide state box.
$('.elZipCodeDiv').hide(); // this to hide the zip code
});
</script>
That’s it! By the way, that code goes into the page footer tracking code…