Show Price By Add to Cart Button (Prestige Theme)

Topic summary

A user wants to display product pricing in two locations on their Shopify store using the Prestige theme: the current position (below product name) and additionally above the ‘Add to Cart’ button, after variant selection.

Proposed Solution:
One respondent provided technical instructions involving:

  • Locating product.liquid or product-template.liquid in the Sections/Templates folder
  • Finding the variant selection section (typically a form element with select options)
  • Adding specific Liquid code snippet below variant selection to display the price

Current Status:
A second user reports experiencing the same issue but cannot locate the required product.liquid or product-template.liquid file despite searching extensively. They’ve requested visual guidance (screenshot) to help identify the correct file location.

The discussion remains open with implementation challenges around file navigation in the theme structure.

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

I want to show the price of my product once a user has selected the variants. Currently the price is sitting at the top of the product page (beneath the product name) but I also want it to show above the ‘Add to Cart’ button, underneath the variant selections.

https://aurea-fine-jewellery.myshopify.com/products/radiant-eternity-ring

Anyone able to help me with this?

  1. In the “Sections” or “Templates” folder, locate the file responsible for displaying the individual product details. This file is typically named product.liquid or product-template.liquid.
  2. Open the product.liquid or product-template.liquid file.
  3. Locate the section where the variant selection options and “Add to Cart” button are displayed. This section typically includes a form element or a series of select elements for variant selection.
  4. Add the following code snippet below the variant selection section to display the price:
{% if product.price %}
  

{{ product.price | money }}

{% endif %}
​

Hello, I am experiencing the same error, but I do not know how to fix it. I tried to do what you said, but I could never find the product.liquid or product-template.liquid file. I have been searching for hours. Can you show me a photo?