Hi All,
First time caller, long time listener so appreciate the help in advance, amazing community. As you know, Shop Pay installments are only available to customers when their purchase is $50.00 or more. I do understand that’s based on the total cart and not the specific item. Nonetheless, I’m trying to hide the “4 interest-free installments, or from $39.62/mo with Shop Pay” if the product price <= $50.00. Below is the code that is not accomplishing that. Any suggestions?
{%- if product.price > 50 -%}
{%- form ‘product’, product, class: ‘js-instalments-form’ -%}
{{ form | payment_terms }}
{%- endform -%}
{%- endif -%}
Thanks