Table of Contents
I want to add a link to the order page in my New Order Notification email or SMS (Shopify Classic Admin)
It may be convenient for your staff to have a link to the order page in your New Order Notification email and in you New Order Notification (mobile) SMS.
Here's how you can add such link.
STEP 1
Go to Preferences → Email & Notifications.
SPEP 2
Click on 'New Order Notification' to open the New Order Notification template in the online code editor.
STEP 3
At the bottom of the template, add this:
You can review this order details in your shop admin at {{ shop.url }}/admin/orders/{{ id }}.
If you are using HTML, use that instead:
<a href="{{ shop.url }}/admin/orders/{{ id }}">View order</a>
STEP 4
Repeat steps 2 and 3 for the New Order Notification (mobile) template.
What about the order number or ID
The order ID is actually given by this:
Order {{ order_name }}
This will return for example:
Order #1001
I want to add a link to the order page in my New Order Notification email or SMS (Shopify Admin 2)
It may be convenient for you and your staff to have a link to the order page in your New Order Notification email and/or SMS. This way, you can check the order details immediately when you get the notification.
Here's how you can add such link:
STEP 1
Log in to your shop and go to Settings > Notifications. Scroll down to the section entitled "Email Templates."
STEP 2
Click on the "edit" link next to 'New Order Notification' to open the New Order Notification template in the online code editor.
STEP 3
At the bottom of the template, add this line:
You can review details of this order in your shop admin at {{ shop.url }}/admin/orders/{{ id }}.
If you are using HTML, use this line instead:
<a href="{{ shop.url }}/admin/orders/{{ id }}">View order</a>
STEP 4 - If you need the link for SMS notifications
Repeat steps 2 and 3 for your New Order Notification (mobile) template.
What about the order number or ID?
The order ID is actually given by this:
Order {{ order_name }}
This will return something similar to this:
Order #1001
