Hi all,
I’m setting up a Store pickup option in PDP.
How do I show the low-in-stock stores with different notes, ex: Low Stock - Call Store
Is there a way to check the stock inventory in each pickup store?
ex:
{%- for availability in pick_up_availabilities -%}
{%- if availability.available -%}
{% qty < 2 %} Low Stock - Call Store {% else %} Stock Available{%endif%}
{%endif%}
{%- endfor -%}
Thank you!