How to remove 'Write a Review' section and 'Ask a Question Section' on my store

Topic summary

Goal: Remove default “Write a Review” and “Ask a Question” sections from a Shopify product page (Impulse theme) while keeping Loox app reviews.

Key updates and solutions:

  • Initial CSS provided hid Loox reviews and a contact form instead. After a screenshot, a working fix was shared: hide the theme’s collapsible block via .collapsibles-wrapper--border-bottom { display: none; }. The original poster confirmed this resolved the issue.
  • Follow-up request to remove only the “Reviews” tab (keep “Do you have a question” and Loox): a CSS selector targeting the specific collapsible trigger button was suggested to hide that tab.
  • Minimal theme case: keep existing reviews but remove the “Write a review” link from Shopify Product Reviews. Solution: hide .spr-summary-actions-newreview in assets/timber.scss.liquid.

Additional context:

  • Screenshots were used to identify the exact sections to remove; CSS file paths (e.g., theme.scss.liquid, theme.css, timber.scss.liquid) are central.
  • Another user asked to remove only the “Customer Reviews” box (site and password provided); no solution posted yet.

Status: Original issue resolved; some variant cases addressed with CSS; one request remains open.

Summarized with AI on December 30. AI used: gpt-5.

@Bobertess

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.template-product div#looxReviews {
    display: none;
}
.template-product form#contact-5568610402469 {
    display: none;
}

Hope this works.

Thanks!