Ecom:Product:RelatedGroup.LanguageID

Version: - string  

Summary

Returns the ID of the language used for the related group.

Settings

The value is based on the chosen language for the related group.

Examples

Outputting the template tag

@GetString("Ecom:Product:RelatedGroup.LanguageID")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Product:RelatedGroup.LanguageID-->

Check if string has a value

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