Hey guys…
So i have this page: https://www.victoriavonberlin.com/checkout
so now i hide the Country Taxes field with this custom code:
<script>
setInterval(function(){
$("div.w-commerce-commercecheckoutordersummaryextraitemslistitem:first").text("");
}, 300)
</script>
So this is the only way i can hide this right?
So now i use the discount option. all is fine, but when i enter a discount, than the div.w-commerce-commercecheckoutordersummaryextraitemslistitem:first is now the discount and the country tax field is the second.
Any workaround ideas?