Ecom:Group.Description

Version: - string  

Summary

Returns the description of the group.

Settings

The value is based on the Description input field for a group.

(Ecommerce > Product Catalog > Shop > Group > Description > Description)

Examples

Outputting the template tag

@GetString("Ecom:Group.Description")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Group.Description-->

Check if string has a value

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