How do I display prices on sold out products. Venture theme

As the subject states. I want my store to display the prices on sold out products, along with some text.
Ex. ‘$99.00, Pre-Order Now!’

Is it possible to do this?

Using Venture theme.

You can go to the location where it was changed to sold out and change it to [{{product.price}}, Pre-Order Now!

I tried this originally and it doesn’t work, it just displays [{{product.price}} in full text on the page.

I’ve tried [{{product.price}}, {{product.price}}, {{ product.price }}, {{price}}, and {{ price }}

It isn’t an HTML entry on the the theme content page.

My is just a reference, you just need to enter {{product.price}},Pre-Order Now!

Yes, I’ve tried it without the , I’ve entered all of the following and none of them work:
{{product.price}}, {{ product.price }}, {{price}}, and {{ price }}

It just displays that exact string as its typed above.

where are you enter?

Edit Default Theme Content > Product > Sold Out

Step1:

Simonsron_1-1673832929661.png

Step2:

Simonsron_2-1673833146789.png

Hi @HLFE

We would like to suggest you a solution below:

  • Go to Theme => Edit Code:

  • Then, find the file price.liquid:

  • Find the code
    , the main product price is money_price:

  • Add the following code right after {{ money_price }}:
{% if available == false %}
     , Pre-Order Now!
{% endif %}
  • Before:

  • After:

  • Here is the result

A note that because we can’t find the Venture theme in the Shopify theme store, we used a similar theme to suggest you a solution - Theme Ride.

I hope that it will work for your theme.