Change price placement in product place

Hi,

Im just wanting the price of my products to be under the variant if someone can help please? Or if there is no variant just above the amount wanting…

I’m sure that’s how it used to be, not sure what has happened there…

Below in the image is how it currently is, also added the link if that helps.

https://thefairtraderstore.com.au/collections/planters/products/kubu-rattan-straight-round-baskets

Thanks

Hello @media_by_bec

Hope you are doing well,

You can change the price of my products to be under the variant by following steps:

  1. On admin panel, go to “online store” and select themes.

  2. In the “current theme” section click on “action buttons” and choose “edit code” from drop down menu.

3.In sections search for file named ‘product- template.liquid’ click on it and open it in the code editor.

  1. Search for code responsible for displaying the product variants , it would be something like

{% for variant in product.variants %}

In this add the following code:

{% for variant in product.variants %}


{{ variant.title }}

{{ variant.price | money }}
{% endfor %}

Now preview and publish the changes if you are satisfied.

Hope this resolves your query.

I think I explained that really badly sorry, I have added a new image below of where I would like the price.

I have a feeling however it might be the version I have of our website theme, looking to update it which will hopefully fix my issue :slightly_smiling_face: but if you have advice of a quick fix until I get the new theme version up and running that would be greatly appreciated :slightly_smiling_face:

Thanks!!