Ecom:FieldDisplayGroup.Name

Version: 9.7.0 string  

Summary

Retirns Name of Field Display Group.

Settings

The value is related to name of the Filed Display Group in definition (Settings-Ecommerce-Product Catalog-Field Display Groups-the group).

Examples

Outputting the template tag

@GetString("Ecom:FieldDisplayGroup.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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