Ecom:VariantGroup.Label

Version: - string  

Summary

Returns the description of the variant group.

Settings

The value is based on the Description input field under the General tab for a variant group.

(Managament center > Ecommerce > Product catalog > Variants > Group > Variant group > Description)

Examples

Outputting the template tag

@GetString("Ecom:VariantGroup.Label")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:VariantGroup.Label"); }

Outputting the template tag

<!--@Ecom:VariantGroup.Label-->

Check if string has a value

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