Ecom:Product.ImageSmall

Version: 8.6.1 string  

Summary

Returns a small image for the current product.

Settings

The value is based on the Small image input field under the Media tab for a product.

(Ecommerce > Product Catalog > > Product group/product > Media tab > Media panel)

Remarks

The value is returned as a HTML code snippet containing an <img> tag.

The tags is removed or not used if Improved image patterns feature is enabled.

Examples

Outputting the template tag

@GetString("Ecom:Product.ImageSmall")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Product.ImageSmall-->

Check if string has a value

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