Customise Notification order confirmation email

@Sam1909 I’ve done something similar like this:

{% for t in transactions %}
  {% if t.gateway == "shopify_payments"" %}
    

This message will show if the order was placed using credit card if you have Shopify payments hooked up

  {% else %}  
    

This message shows for everything else

  {% endif %}
{% endfor %}

To find the name of the gateway (“shopify_payments” in my example above), go to the order details page of the type of orders you want to identify, then in the url bar at the end of the order ID (it will be a string of numbers), add “/transactions.json” and then press enter. That will load the transaction data for the order, just search for “gateway” from there to identify the value that Shopify is using for it.

If you prefer to have a developer do this, I recommend Speed Boostr. That’s my go-to team of developers for working on Shopify sites.