Ecom:Order.TrackTraceName

Version: 9.8.4 string  

Summary

Returns name of the track & trace configuration.

Settings

The value is related to a Track & Trace selected in Ecommerce - Orders - Order - Details - Track & Trace - Track & Trace field for specific order.

Track & Trace configuration can be defined in Settings-Ecommerce-Orders-Track & Trace.  

 

Examples

Outputting the template tag

@GetString("Ecom:Order.TrackTraceName")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Order.TrackTraceName"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order.TrackTraceName"); }

Outputting the template tag

<!--@Ecom:Order.TrackTraceName-->

Check if string has a value

<!--@If Defined(@Ecom:Order.TrackTraceName)--> Let's output this tag here: <strong><!--@Ecom:Order.TrackTraceName--></strong> <!--@EndIf(@Ecom:Order.TrackTraceName)-->