Ecom:Group.Category.ID

Version: - string  

Summary

Returns the ID of the product category assigned to the products in the group.

Settings

The value is based on the System name for the product category.

(Management Center > Ecommerce > Product catalog > Product categories > Product category > Settings > System name)

Examples

Outputting the template tag

@GetString("Ecom:Group.Category.ID")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Group.Category.ID"); }

Outputting the template tag

<!--@Ecom:Group.Category.ID-->

Check if string has a value

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