Hi!
I have turned off reviews from WooCommerce / Settings / Products and they are still showing up on my product page after purging cache.
I have also tried to remove the additional information tab by adding this CSS:
.additional_information_tab {
display: none !important;
}
But that did not work either :-(
Any ideas how to et rid of these two tabs that I do not need on my product pages?
Here is a link for reference:
Hey gb,
Please try this CSS instead:
li.reviews_tab {
display: none;
}
Best regards,
Rikard
Hi Rikard,
That worked for the reviews, thank you! Any way to understand why turning off reviews within WooCommerce settings did not work?
Also can you provide me with the code to remove the Additional Information tab as well?
Thanks so much
GB
Hi,
I’m not sure why that stays unfortunately, but you can hide the Additional information tab using this CSS:
li.additional_information_tab {
display: none;
}
Best regards,
Rikard
Thanks, that worked!
I realize that my clearing cache is not fully working at times as I could still see the Info tab after numerous cache clearings. However if I open the page in Firefox, the Info tab is gone.
So now I know that I will need to cross check changes I make with cache clearing, then other browsers after Safari such as Firefox and Chrome.
Thanks Again