Replacing the Price Tag of Sold Out items with a "Sold Out" label (Symmetry Theme) Help

Topic summary

Goal: Show a “Sold Out” label instead of the price for out-of-stock items on the collection page in the Symmetry theme, while keeping the price visible on product pages.

References: An image was provided for the desired look, along with the store URL and a password for access.

Proposed approach: Edit the collection page template to locate where the price is rendered and wrap it in a Liquid conditional:

  • If current_variant.inventory_quantity < 1, output “Sold Out”.
  • Else, output the existing price code.
    Guidance included duplicating the live theme before changes and a link to Shopify Liquid documentation.

Latest update: The theme reportedly does not have a collection.liquid template, suggesting the price may be controlled in different sections/snippets in Symmetry.

Status: Unresolved. Key next step is identifying the correct file/section/snippet that renders prices on the collection page to apply the conditional logic.

Summarized with AI on January 5. AI used: gpt-5.

Hi all, hope everyone is well.

I recently started using the symmetry theme and I would like to replace the price tag of Sold Out items with a “Sold Out” label only on the collection page. I still want the price to be shown on the product page, however. I provided a picture above for reference. Is there any code I can add that can give me a result like this?

Thank you!

My website is: https://www.newworldvisionz.com

password is: nwv2

In your theme editor look for the template collection.liquid, that will likely have some included sections or snippets, follow those, read the code to find where the price is shown, then create a conditional statement to show “Sold Out” if inventory is less than 1.

Something like this:

{% if current_variant.inventory_quantity < 1 %}
  Sold Out
{% else %}
  your normal code that already exists would remain here
{% endif %}

If you’re not familiar with Liquid and are not hiring a developer, this will help you to learn: https://shopify.dev/docs/api/liquid

Make sure you duplicate your live theme, then work on the new duplicated theme so you can edit and preview before it goes live.

I checked and my theme doesn’t have a collection.liquid template