TrackingMore
TrackingMore is a shipment tracking platform for managing parcel tracking information and displaying tracking updates to customers.
Key features include:
- Shipment tracking
- Branded tracking pages
- Tracking notifications
- Shipment analytics
TrackingMore integrates with ShopWired by adding the tracking page code to a ShopWired website page so customers can view tracking updates from your website.
Account creation
Account creation
Create an account on the TrackingMore website.
After your account is created, TrackingMore can provide the iframe code required to embed a tracking page on your website.
Adding the TrackingMore tracking page to a website page
Adding the TrackingMore tracking page to a website page
TrackingMore provides iframe code for embedding a tracking page on your website. The code is similar to the example shown below:
<iframe width="100%" src="https://example.trackingmore.org/?page=tracking-page&mode=iframe" frameborder="0"></iframe>
<script>
const iframe = document.querySelector("iframe");
const handleResize = (height) => {
iframe.style.height = height + "px";
};
window.addEventListener("message", (event) => {
const { type, height } = event.data;
if (type === "resize") {
handleResize(height);
}
});
</script>
The code shown above is provided as an example only. You must copy the exact iframe code provided in your own TrackingMore account, as the code and any ID values will be unique to your website.
To add the TrackingMore tracking page to a ShopWired website page:
- Navigate to Website > Themes
- Select the
customise your themeoption for the theme you want to edit - Select
add a new section - Select the
custom HTMLsection type - Paste the TrackingMore iframe code into the Custom HTML setting
- Use the theme editor to position the section where you want the tracking page to display
- Select
save changes
After the iframe code has been added, the TrackingMore tracking page will display on your website.
Recommendations
Recommendations
- Add the tracking page to a page that customers can access from your website navigation
- Test the tracking page on a draft theme before updating your live theme
- Keep a record of the page where the iframe code has been added
- Update the embedded code if TrackingMore provides a replacement iframe code