Hello, I am using Order Print and the count variable to display a number on my invoices. I need the number to start with: GS000100. For some reason the 3 zeros in the front do not display and I see instead: GS100. Is there a way to fix this? Thank you so much!
Code:
- Gutschrift-Nr.
GS {% assign count = 000098 %}
{% for transaction in refund_transactions %}
{% assign count = count | plus: 1 %}
{{ count | plus: 1 }}
{% endfor %}
What it displays:
![]()