Make sure this fits by entering your model number. appears in product description. How to remove it?

Add those lines after wp_footer() call in footer.php of your active theme.

Also be sure if you have a caching plugin, clear the cache.

<script type="text/javascript">
jQuery(document).ready(function($){
    jQuery('.woocommerce-product-details__short-description:contains("Make sure this fits by entering your model number."),.product-short-description:contains("Make sure this fits by entering your model number."),#tab-description:contains("Make sure this fits by entering your model number.")').each(function(){
        jQuery(this).html(jQuery(this).html().split("Make sure this fits by entering your model number.").join(""));
    });
    jQuery('.woocommerce-product-details__short-description:contains("Make sure this fitsby entering your model number."),.product-short-description:contains("Make sure this fitsby entering your model number."),#tab-description:contains("Make sure this fitsby entering your model number.")').each(function(){
        jQuery(this).html(jQuery(this).html().split("Make sure this fitsby entering your model number.").join(""));
    });
});
</script>

Back To Top