A space to discuss online store customization, theme development, and Liquid templating.
Hello - I am trying to remove the Shopify Star ratings from my website. Please help.
It still shows as 3 reviews here:
https://dragonwinggirl.com/products/the-racer-seamless-sports-bra
Solved! Go to the solution
This is an accepted solution.
Hello there,
1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset >styles.css and paste this at the bottom of the file:
.theme-product-reviews.not-in-quickbuy {
display: none;
}
This is an accepted solution.
Hello there,
1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset >styles.css and paste this at the bottom of the file:
.theme-product-reviews.not-in-quickbuy {
display: none;
}
Hi @allisonher ,
You can follow the instruction below:
1. Go to Online Store->Theme->Edit code
2. Asset->/styles.css->paste below code at the bottom of the file:
.theme-product-reviews,
.standalone-bottomline,
.yotpo-stars-and-sum-reviews {
display: none !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.