I am using the GAF Store Pickup app and it seems to work fine but I am wanting to disable the shipping or store pickup options based on product tags. I found this in the apps FAQ page so I added it to my theme.liquid. It works great if I add a tag to the CUSTOMER but I need it to be based off of the PRODUCT TAG and not the customer tag. Any suggestions on how I can make it look at the product tag instead of the customer tag?
< script >
var disable_gafcnc = false;
{% if customer %}
{% if customer.tags contains “Pickup Disabled” %}
disable_gafcnc = true;
{% endif %}
{% endif %}
< / script >