Ecom:Product.ImageLarge.Clean

Version: 8.6.1 string  

Summary

Returns an URL for the large image.

Settings

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

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

Remarks

The tags is removed or not used if Improved image patterns feature is enabled. Compartibility mode (if available) fills the tag by data from Ecom:Product.PrimaryImage tag. 

Examples

Outputting the template tag

@GetString("Ecom:Product.ImageLarge.Clean")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Product.ImageLarge.Clean-->

Check if string has a value

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