1

I have this code in my Shopify page.

{% for discount in discounts %}
{{ discount.title }}<br>
{% endfor %}

But this is not showing any lists of discount I created. Any help will be appreciated :)

Anthony Carbon
  • 608
  • 1
  • 5
  • 18

2 Answers2

1

You know you can only access a Discount object in notifications, like emails? You cannot access them just anywhere. Shopify only exposes that when you need to print an email for example, for the customer to see their items and money they spent.

David Lazar
  • 10,865
  • 3
  • 25
  • 38
0

Discount Object will display a value only if it's accessed in notifications or in the Order Printer App. For more info please refer - https://help.shopify.com/en/themes/liquid/objects/discount or https://www.shopify.in/partners/shopify-cheat-sheet

Deepak Nirala
  • 826
  • 6
  • 11