How to place the price before the barred price

Hello,

I would like to put the price on the left and the crossed out price on the right. Reverse the position of the normal price and the discounted price. I am on the venture theme.

Capture d’écran 2022-05-18 123253.png

Hey @Max123456 .

Thanks for reaching out.

I appreciate that you have let us know which theme you are using as that is very helpful! I can definitely see how making this change could capture the attention of your customers.

Looking into the Venture theme, it looks like we cannot switch the position of the compared at price and product price using the Theme Editor. However, you could make a change to the theme’s coding to have the prices switch locations.

Since the Venture theme is designed and supported by Shopify, we can use free design time for Shopify themes to have our internal team make the changes on your behalf.

If you are interested in using the design time, you will need to login to your store using our Contact Us page. This will allow us to securely verify you as the store owner before speaking directly with a Support Advisor about the changes you would like to see.

Let me know if you have any additional questions

Hi @Max123456 ,

Please go to product-card.liquid file, find ‘product-card__price’ and change code here:

Code:

{{ 'products.product.sale_price' | t }}
{{ product.price | money_without_trailing_zeros }}

{{ 'products.product.regular_price' | t }}
~~{{ product.compare_at_price | money_without_trailing_zeros }}~~

Hope it helps!

1 Like

Hi @Max123456 ,

I saw you liked my answer. If it helped you solve your issue, please mark it as a solution. Thank you and good luck.