Hello!
Very simple request. I would like it to say ‘‘From’’ on the price before the price, since I offer some discounts on the site if you buy more than 1 etc, and since then my lowest price would be something else than what is displayed now. I can provide site URL in PMs upon request if needed, since I do not want it to be public here, thank you so much!
Please provide store url?
@manoman hey ,
add the code on your product price area
{% if available %}
{% if product.price_varies and template == 'collection' %}
From {{ product.price_min | money }} to {{ product.price_max | money }}
{% else %}
{{ product.price | money }}
{% endif %}
{% else %}
Sold out
{% endif %}
Will try this when I get home. Thanks, if it work I accept solution and like thanks bro
1 Like
Hi @manoman ,
This is Theodore from PageFly - Shopify Page Builder App.
To display “From” before your discounted price on Shopify:
- Go to Products → All products in your Shopify admin.
- Edit the desired product.
- Find the “Compare at price” field and enter the original (higher) price.
- Save changes.
This will show “From $” followed by your discounted price and then the original price in strikethrough.
Best regards,
Theodore | PageFly
I dont want the strike through I just want it to say ex. ‘‘From 269 kr’’
This did not work, where do I put it exactly?
where the old price exicted
@manoman
I dont understand. I have discounts for a product if you buy 2, so I want to display the minimum price for 2, and then if they buy 1, they pay full price. This is what I want to do.