Ecom:Product.Image.Master

Version: 9.7.0 string  

Summary

Returns Master product image when a main product is shown.

Settings

The value is related to rendering of improved image pattern defined in shop, depends on 'Settings-Ecommerce-Advanced configuration-Images-Improved image patterns' option. Find extra details within the manual.

Examples

Outputting the template tag

@GetString("Ecom:Product.Image.Master")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.Image.Master"); }

Outputting the template tag

<!--@Ecom:Product.Image.Master-->

Check if string has a value

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