Ecom:Product.OrderLineField.Name

Version: - string  

Summary

Returns the name of the order line field.

Settings

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

(Management Center > Ecommerce > Orders > Order line fields > Order line field > Settings > Name)

Examples

Outputting the template tag

@GetString("Ecom:Product.OrderLineField.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Product.OrderLineField.Name-->

Check if string has a value

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