Ecom:Order:OrderLine.OrderLineField.Name

Version: - string  

Summary

Returns the name of the order line field.

Settings

The value is based on the Name input field under the order line field settings.

(eCommerce > Settings > Order line fields > Edit order line field)

 

Examples

Outputting the template tag

@GetString("Ecom:Order:OrderLine.OrderLineField.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order:OrderLine.OrderLineField.Name"); }

Outputting the template tag

<!--@Ecom:Order:OrderLine.OrderLineField.Name-->

Check if string has a value

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