my app is product reviews. I would like to remove the starts and “no reviews” from products when their are no reviews. how do I do this?
Hi @Aryy
Please share your product URL so I can check and give you the solution.
Our Ryviu app has function to hide star rating when there is no reviews by default if you concern.
Hello @Aryy ,
Follow these steps:
-
Go to Online Store → Theme → Edit code
-
Open your theme.css or style.css or base.css file and paste the following code below:
.spr-badge[data-rating="0.0"] {
visibility: hidden;
display: none;
}
Thanks
Hi @Aryy
I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.
Please add this css in your bottom of the css file:
.spr-badge[data-rating=“0.0”] {display: none !important;}
Regards,
San
which css file? please be specific and thank you!
this isnt working
doesnt work
You break the css.
It should be after the closing tag of the previous css.