• Does its possible to hide the price label inside bracket “()” in side-cart from (gravityform product addon)?

    i found out this code on stackflow but not work.
    maybe need some arrangment?

    jQuery(document).ready(function(){
      jQuery( ".mini_cart_item" ).each(function( index ) {
        html = jQuery(this).html();
        html = html.replace(/ *\([^)]*\) */g, "");
        jQuery(this).html(html);
      });
    })

    thanks

    • This topic was modified 4 years, 7 months ago by fabio323ti.

The topic ‘Hide Pricelabel (GF product-add-on)’ is closed to new replies.