How to show automated discount prices under product pages

I created an automated discount for a collection on my website. But the discounted prices are only visible once you add the items to the cart and look at the cart balance. Is there a way to show the discounted prices (showing its been discounted) on the collection page where all the items are visible with the prices? I am using the FLOW theme.

Hi @Maxfieldkudo ,

Hope you are doing great!

As far as I understand, is that your theme code can’t know what discounts apply until you add item to cart and only then this information is available

With some hackish javascript you can do it in background and update the data displayed on the product page

In your case you may be better off by simply outputting the {{ product.price | times: 0.6 | money }} (and so on) based on some condition

However, if your products has variants, it’s a bit more complex and will need javascript modification as well.

Shopify Discounts have limitations, but I see a reason why Auto discounts applied in cart only, because some may apply only if entire order is more than threshold.

You may consider using an App, general automation app like Arigato or Mechanic, or some discount app.

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any questions!