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
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
Done but it change nothing.
Hi,
Please provide a link to the site/page in question so we can look into this issue further.
Best regards,
Jordan Shannon
Have this quickcss on top:
.dashicons dashicons-editor-help wc-measurement-price-calculator-input-help tip {
display: none !important;
}
for page see in private
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