Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1036702

    Hi team,

    I need to hide some elements from Measurment price calculator Woo plugin.
    I asked to them and gave me quick css but it doesn’t work (them told me it’s a theme support problem):
    So i need to hide:
    “dashicons dashicons-editor-help wc-measurement-price-calculator-input-help tip”
    and
    “wc-measurement-price-calculator-price”

    They give me this code but it doesn’t work:
    .wc-measurement-price-calculator-price {
    display: none !important;
    }
    Thanks for help

    #1037191

    Hey jb84,

    Did you add the code to the very top of quick css so that it runs first? Also be sure to clear the cache a few times over.

    Best regards,
    Jordan Shannon

    #1037677

    Done but it change nothing.

    #1037819

    Hi,

    Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1037945

    Have this quickcss on top:
    .dashicons dashicons-editor-help wc-measurement-price-calculator-input-help tip {
    display: none !important;
    }

    for page see in private

    #1038203

    Hi jb84,

    This code has spaces and not dots, it’s totally incorrect

    
    .dashicons dashicons-editor-help wc-measurement-price-calculator-input-help tip {
    display: none !important;
    }
    

    It has to be

    
    .dashicons.dashicons-editor-help.wc-measurement-price-calculator-input-help.tip {
    display: none !important;
    }
    

    Best regards,
    Victoria

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.