This article to help you update the tracking link in your Shopify and shipping email and your customers will be redirected to your store's tracking page instead of the carrier's website.
Click the Setting on the left side of the app and Enable the Update Shopify's native tracking links.
This feature will change the Tracking link in these places to direct your customers to the tracking page in your store.
Thank you page
Order detail page
Order history page
Order status page
Shipping update email
Out for delivery email
Delivered email
Change the link in the shipping confirmation email. Head to Shopify > Settings > Notifications > customer emails > and click the Shipping confirmation email.
3. Update the Tracking number link. Search (ctrl F or β F) for the phrase
<a href="{{ fulfillment.tracking_url }}">
and change the codes with
<a href="{{shop.url}}/apps/track123?nums={{ fulfillment.tracking_numbers.first }}">
Note: If you have customized the URL of the Tracking page, the code also needs to change. if not, please ignore it.
For example:
The original tracking URL is: http://yourstore.myshopify.com/apps/track123
You have changed to: http://yourstore.myshopify.com/a/trackSo you need to change the code to
<a href="{{shop.url}}/a/track?nums={{ fulfillment.tracking_numbers.first }}">
4. (Optional)Remove the carrier name. Search (ctrl F or β F) for the following phrases and remove them. You need to remove these codes from the following emails which your customers may received.
Shipping comfirmation email
Shipping update email
Out for delivery email.
Delivered email
and fulfillment.tracking_company
{{ fulfillment.tracking_company }}
That's all, save your change. and tracking link has been added to your Shopify and Email Templates!