Ecom:Product.ImageDefault.Default.Clean

Version: 9.7.0 string  

Summary

Returns an URL for the default(default) image. 

Settings

The value is related to an image marked as default in the product edit form (Document and Files/Product Image section of Ecom/PIM products).

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.ImageDefault.Default.Clean")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Product.ImageDefault.Default.Clean-->

Check if string has a value

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