Advertisement
Guest User

Shopify order tracking code

a guest
Sep 7th, 2020
3,238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. <p>Looking to track your order? When your Order ships out, you will receive a<span> </span><strong>Shipping Confirmation</strong><span> </span>email from<span> </span><strong>sales@thecleverbusiness.com</strong><span> </span>with your tracking number included in it. Depending on the product ordered, the email could take up to 7 business days to be sent. Once you receive the email, enter your tracking number below to easily check on your delivery status.</p>
  2. <!--Tracking number input box.--> <input type="text" id="YQNum" maxlength="50" /> <!--The button is used to call script method.--> <input type="button" value="TRACK" onclick="doTrack()" /> <!--Container to display the tracking result.-->
  3. <div id="YQContainer"></div>
  4. <!--Script code can be put in the bottom of the page, wait until the page is loaded then execute.-->
  5. <script type="text/javascript" src="//www.17track.net/externalcall.js"></script>
  6. <script type="text/javascript">// <![CDATA[
  7. function doTrack() {
  8. var num = document.getElementById("YQNum").value;
  9. if(num===""){
  10. alert("Enter your number.");
  11. return;
  12. }
  13. YQV5.trackSingle({
  14. //Required, Specify the container ID of the carrier content.
  15. YQ_ContainerId:"YQContainer",
  16. //Optional, specify tracking result height, max height 800px, default is 560px.
  17. YQ_Height:560,
  18. //Optional, select carrier, default to auto identify.
  19. YQ_Fc:"0",
  20. //Optional, specify UI language, default language is automatically detected based on the browser settings.
  21. YQ_Lang:"en",
  22. //Required, specify the number needed to be tracked.
  23. YQ_Num:num
  24. });
  25. }
  26. // ]]></script>
  27. <h3>Things to Keep in Mind:</h3>
  28. <p>Order Numbers don’t instantly update with available Delivery Status. If your tracking number entered shows that it is currently unavailable, do not be alarmed - Your order has been shipped out and is in transit to the local post office. Tracking should be updating within a few business days. Depending on the destination, the order may take 10 to 15 business days to be delivered.</p>
  29. <p>If you see any irrelevant ads on the tracking popup, we are sincerely sorry. W<span>e use a third-party order tracking service to ensure the best tracking result so we have no way of controlling the ads shown on it. Thank you for your understanding.</span></p>
  30. <p>Happy shopping!</p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement