Ecom:Group.LargeImage

Version: - string  

Summary

Returns the path to the large image for the group.

Settings

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

(Ecommerce > Product Catalog > Shop > Group > Details > Media > Large)

Examples

Outputting the template tag

@GetString("Ecom:Group.LargeImage")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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