No content to show
User Activity
Hi Bogi, I added the following lines at the very beginning of the order confirmation template. {% if order.financial_status == 'pending' %}
{% assign has_pending_payment = true %}
{% else %}
{% assign has_pending_payment = false %}
{% endif %} C...
I am having error messages with all the payment methods under Shopify Payments and Paypal but I cannot find anything in payment settings having problem. Anyone experienced something similar? Error message with Shopify PaymentsThere was an issue proc...
@pawankumar Thanks for the docs. I found the order.financial_status fixing my needs. Yeah.
@rishi1897 I thought that's a system defined global var. It is working fine now after defining has_pending_payment with checking order.financial_status. Thank you very much for pointing me to the right path.
There are, by default, the below payment status checking in the order confirmation template but it never goes to the true condition even the order is payment pending. What makes the order confirmation going to the true condition? Thanks.{% capture ...