Hello everyone hope you are all are doing well.I want to remove in product page the sign (0) , its under prices.How can be removed
Topic summary
A user seeks to remove a “(0)” rating count display appearing under product prices on their store (pawshubs.com).
Multiple solutions provided:
- Add CSS code
p.rating-count.caption { display: none !important; }to theme.css, base.css, or style.css files - Alternative approach: Insert the same CSS within
<style>tags in the theme.liquid file, placed inside the<head>section
Initial attempts failed:
The user reported that several CSS file modifications didn’t work initially, despite multiple community members providing similar solutions.
Resolution:
The issue was ultimately resolved using the theme.liquid method with inline CSS styling. The user confirmed success after implementing code directly in the <head> tag rather than in separate CSS files.
Key technical detail:
The target element was identified as p.rating-count.caption or .product__info-wrapper p.rating-count.caption, requiring the !important flag to override existing styles.
Hey @VisarK
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above tag.
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello,
Please share your store url?
Thanks!
Hello @Moeed it doesnt work i tried
Hello @VisarK ,
- Log in to Shopify Admin.
- Navigate to Online Store > Themes > Actions > Edit Code.
- Open “theme.css” file.
- Paste CSS code at the bottom.
- Save changes.
- Preview and publish if satisfied.
p.rating-count.caption {
display: none !important;
}
Thanks!
Hi @VisarK ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid
Step 3: Insert the below code at the bottom of the file → Save
.product__info-wrapper p.rating-count.caption {
display: none !important;
}
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
Hi @VisarK Thanks for the URL, Please add the code in your theme.css/base.css/style.css file which is available in your theme.
p.rating-count.caption {
display: none !important;
}
If you are not sure where is your theme.css/base.css/index.css/style.css file please follow the steps:
- Login in shopify admin.
- Click on the Online Store.
- Then click on the button next to Customize in live Theme.
- Click Edit Code.
- Search theme.css/base.css/index.css/style.css in the code in left hand side which ever is available in your theme.
- You can add the above code at the bottom of the file.
Result:
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil
Hello @VisarK ,
I understand you are looking to remove the unnecessary sign(0) appearing in your Product Detail Page.
You can remove this by adding the below CSS code at the bottom on your store css file (base.css/ style.css/theme.css file) and save.
p.rating-count.caption {
display: none !important;
}
After applying code output will be like this -:
I hope the code helps you.
Please share if you need any further assistance.
Thank you.
I tried it doesnt work @topnewyork
@BSSCommerce-HDL i tried doesnt work
@sahilsharma9515 doesnt work
@Anshul_arora it doesnt work i tried also
Hello @VisarK ,
- Log in to Shopify Admin.
- Navigate to Online Store > Themes > Actions > Edit Code.
- Open “theme.liquid” file.
- Locate the
<head>tag and paste the code at the bottom of it. - Save changes.
- Preview and publish if satisfied.
Thanks!
Hello @VisarK,
- Log in to Shopify Admin.
- Navigate to Online Store > Themes > Actions > Edit Code.
- Open “theme.liquid” file.
- Locate the
<head>tag and paste the code at the bottom of it. - Save changes.
- Preview and publish if satisfied.
<style>
p.rating-count.caption {
display: none !important;
}
</style>
Thanks!
Hi @VisarK ,
You can try this code by following these steps:
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Inside tag head. You need create style tags. After you’ll insert my code inside it
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
Now is good thanks a lot @topnewyork






