Removing loox starts from collection page in debutify theme

Topic summary

A user is attempting to remove Loox review stars from collection pages in the Debutify theme but cannot locate the correct file.

Loox’s official instructions reference product-grid-item.liquid, but the Debutify theme only contains product-grid-item.liquid without the specific <div class> code snippet mentioned in the removal guide.

The code to delete is:

<div class="loox-rating" data-id="{{product.id}}" data-rating="{{product.metafields.loox.avg_rating}}" data-raters="{{product.metafields.loox.num_reviews}}"></div>

Resolution: Another user successfully removed the stars from the Dawn theme by locating the code in card-product.liquid instead, using Ctrl+F to search for “loox” to quickly find the relevant snippet. This suggests theme-specific file naming variations require searching by keyword rather than relying solely on documentation file names.

Summarized with AI on November 16. AI used: claude-sonnet-4-5-20250929.

Hi Shopifyers!

I’m trying to remove the loox review stars from my collection page. But i can’t find where i have to remove the piece of code from my theme. Loox gives the following instruction:

To remove Loox star ratings from your collection pages follow these steps:

  1. Go to your Shopify Themes menu

  2. Click the “Actions” menu and then select “Edit code”

  3. Edit the product-grid-item.liquid (under snippets, product-grid-item.liquid / product-loop.liquid / product-info.liquid but some themes work differently)

  4. Find and delete the code below:

    <div class="loox-rating" data-id="{{ product.id }}" data-rating="{{ product.metafields.loox.avg_rating }}" data-raters="{{ product.metafields.loox.num_reviews }}"></div>
     
    

On the debutify theme i can only find product-grid-item.liquid. But there is not a single

on Loox. I hope someone can give me the solution. Thank you very much!

1 Like

Wonderful! I found it under “card-product.liquid” using the Dawn theme. Code wasn’t word for word(a bit outdated) but still super close. I ctrl+F “loox” and found it immediately. Thanks!