Hello, couldn’t find solution, so I decided to ask for help. How do I remove built-in “Customer Reviews” and “Write a review” in a Dawn Theme when you select any product? I have installed app to import reviews and now I have two options to add reviews.
@bankin
Put below css code into base.css file (online store->themes->base.css)
div#vstar-noreviews {
display: none !important;
}
Hello @bankin
Add this CSS below of Online store >> Edit Code >> Assets >> base.css
#noreviews-wrapper {
display: none !important;
}
Didn’t work
This one also didn’t work.
Hello @bankin
Add this CSS below of theme.liquid before closing tag
#noreviews-wrapper { display: none !important; }It worked, thanks