The span tag with class="WooZone-free-shipping"
has an &
character just inside it. I cannot remove it from the code for some reason but I have to hide it on this page.
I tried to do it with the following jQuery:
jQuery('.WooZone-free-shipping').html(jQuery('.WooZone-free-shipping').html().replace("&",""));
and with this css:
span.WooZone-free-shipping:nth-child(1) {
display: none;
}
But these two methods did not work.