How do I remove the defualt 'write a review' section from my store on shopify

Hello, I was testing out my review system and it looks bad. I imported reviews via Judge.me app, but the default Shopify ‘Write a Review’ section underneath the product details still remains. I have a widget at the bottom of the page that I’d rather use. Also the review stars beside the product display “review” by it and I would also like to get rid of that. Any help would be appreciated, thanks. https://bubbasgeneralstore.com/collections/best-sellers/products/kitchen-rack Password: 2023EDIT!

This is a custom theme.

1 Like

Hi @Statikk ,

Just for clarification its on the product page right? write review, the stars also the costumer reviews?

If im right try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
div#judgeme_product_reviews {
    display: none;
}

Result:

I hope it help.

1 Like

Thank you so much it worked.

1 Like