Ecom:Group.Clickable

Version: - boolean  

Summary

Returns True if the group is clickable in the navigation.

Settings

The value is based on the Clickable button for a group.

(Ecommerce > Product Catalog > Shop > Group > Navigation > Clickable)

Examples

Outputting the template tag

@GetBoolean("Ecom:Group.Clickable")

Check if tag has a value

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

Assign tag to a value for later use

@{ bool storedTag = GetBoolean("Ecom:Group.Clickable"); }

Outputting the template tag

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

Check if boolean has a value

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