Announcement

Collapse
No announcement yet.

Adding an order tracking link to your custom layout

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Adding an order tracking link to your custom layout

    New sites generated by SellerDeck's v11 ecommerce software include a ‘Recent Orders’ link in the page layout. This link opens a page where customers can track the status of an order by entering the order number and delivery postcode, regardless of whether they have an account or not, and without having to log in.

    The link is visible to non-logged in customers provided Online Order Tracking is enabled in the Business Settings.

    The version 11 upgrader does not attempt to add this link to customised page layouts, because it has no way of knowing where it should be placed.

    To add the link manually, either go to the Design tab or open your Web Page Outer Layout in the Library. Place the cursor where you want the link to appear and paste the following code:

    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22IsOrderTrackingEnabledForUnreg%22%20%2f%3e%20%20%3d%3d%20%20true" ><Actinic:NOTINB2B><actinic:variable name="NavigationIcon" value="Recent Orders Basic Link" /></Actinic:NOTINB2B></actinic:block >
    If you are adding the link to an existing ordered or unordered list, e.g. an existing SellerDeck nav bar, then you need to use the following code: -

    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22IsOrderTrackingEnabledForUnreg%22%20%2f%3e%20%20%3d%3d%20%20true" ><Actinic:NOTINB2B><li><actinic:variable name="NavigationIcon" value="Recent Orders Basic Link" /></li></Actinic:NOTINB2B></actinic:block >
Working...
X