Ecom:Product.PrimaryGroupID

Version: - string  

Summary

Returns ID of primary group of the product, based on a product group set as primary in the product definition. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Product.PrimaryGroupID")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.PrimaryGroupID"); }

Outputting the template tag

<!--@Ecom:Product.PrimaryGroupID-->

Check if string has a value

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