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

Version: - string  

Summary

Returns the value of the field.

Settings

The value is based on the Product category field on the product detail page.

(eCommerce > Product catalog > Group > Product > Details tab > Product category group section > Product category field)

Examples

Outputting the template tag

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

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Product.CategoryField.[ProductCategoryGroup].[Field].Value"))) { @* 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].Value"); }

Outputting the template tag

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

Check if string has a value

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