Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].TemplateTag

Version: - string  

Summary

Returns the field template name.

Settings

The template tag is based on the Template Tag field for the product category field.

(Management center > eCommerce settings > Product Catalog > Product categories - Product category - Fields - Field - Template Tag)

Examples

Outputting the template tag

@GetString("Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].TemplateTag")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].TemplateTag"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].TemplateTag"); }

Outputting the template tag

<!--@Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].TemplateTag-->

Check if string has a value

<!--@If Defined(@Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].TemplateTag)--> Let's output this tag here: <strong><!--@Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].TemplateTag--></strong> <!--@EndIf(@Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].TemplateTag)-->