Ecom:Product.Image[PatternName].Default

Version: - string  

Summary

Returns a product image in the size pattern that's defined in paragraph settings.

Outputs the same as Ecom.Product.Image[PatternName].

Settings

The value is based on the user defined pattern input field under the paragraph settings.

(Page > Paragraph > Module tab > User defined patterns)

Remarks

If the pattern name is "Alt_1" then the template tag is named like this @Ecom:Product.ImageAlt_1.Default.

Examples

Outputting the template tag

@GetString("Ecom:Product.Image[PatternName].Default")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.Image[PatternName].Default"); }

Outputting the template tag

<!--@Ecom:Product.Image[PatternName].Default-->

Check if string has a value

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