Ecom:Product.Image.Variant

Version: 9.7.0 string  

Summary

Returns Variant product image when an variant 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.

Remarks

Unless there is no variant product in which case the Master product image is used.

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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