How to add a tracking link to the customer account page? You can add a tracking link to the customer account page so that your customers can track their orders on your store tracking page by clicking the tracking link there. Here's what the account page generally looks like after you added a tracking link to the page:  **Step 1** Go to your **Shopify admin dashboard**, click on **Online Store** → **Themes** → **Edit code** from the **Actions** dropdown list.  **Step 2** Go to theme's code files. Under the **Templates** folder, locate the **customers/account.liquid** file.  **Step 3** Under the line that reads: `<th>{{ 'customer.orders.fulfillment_status' | t }}</th>` add this code bellow: `<th> Track Order </th>`  **Step 4** Under the line that reads: `<td>{{ order.fulfillment_status_label }}</td>` add this code bellow: <td> <a href="{{shop.url}}/apps/parcelpanel?order={{ order.name | remove: "#" }}&token={{ order.email | split: "" | reverse | join: "" | replace: '@', '_-_' | url_encode }}" target="_new">Click here to get shipping updates</a></td>  **Step 5** Save your changes.