Ecom:CustomField.Name

Version: - string  

Summary

Returns the name of the custom product field.

Settings

The value is based on the Name field under the product field settings.

(Management Center - Ecommerce - Product catalog - Product fields - General - Settings - Name)

Examples

Outputting the template tag

@GetString("Ecom:CustomField.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:CustomField.Name-->

Check if string has a value

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