Product title and price hidden in list view when compare-at-price used

Topic summary

A Shopify user encounters a display issue where adding a compare-at-price to products causes the product title and price to disappear in list view, leaving only non-clickable product images visible.

Problem confirmation:

  • Removing the compare-at-price field restores normal product display
  • Issue appears to be directly caused by the compare-at-price field

Proposed solution:

  • Modify theme code to properly display the compare-at-price
  • Add the variable {{ product.compare_at_price | money }} to the appropriate template file
  • For Dawn theme specifically, look for files like product-info.liquid that display product pricing

Current status:

  • User is seeking guidance on which specific template or section to modify in the Dawn theme
  • Discussion remains open with technical implementation details pending
Summarized with AI on November 4. AI used: claude-sonnet-4-5-20250929.

When I include the “compare-at-price” field like this within a product:

As a result, the product name and price does not appear in the list view. Only the image appears only it’s own (which is not clickable), and no other product detail appears.

It is definitelty the “compare-at-price” field that causes this, because when I remove the “compare-at-price”, the product detail appears in the list view:

Does anyone know how to fix this? I would like to show the original “compare-at-price”.

Hi @missjo13 ,
We need to show compare at price by modifying the theme code.

It’s not shown by default? What code do you suggest I try?

Every theme has unique file structures and naming conventions, making it challenging to pinpoint the exact file to update without reviewing your theme’s code. Generally, the file you’re looking for might be named something like product-info.liquid. You can search within this file for the section that displays the product price and add the following variable to display the compare-at price: {{ product.compare_at_price | money }}.

Hi @Asad-Mahmood , I’m using the Dawn theme. In what template or section should I find this “compare_at_price”?