Ecom:LastAddedProduct.ImageLarge.Default

Version: - string  

Summary

Returns the large (default) image for the latest added product.

Settings

The value is based on the Large input field under the ecommerce no image settings.

(Management Center - Ecommerce - Advanced - Images - No image - Large)

Examples

Outputting the template tag

@GetString("Ecom:LastAddedProduct.ImageLarge.Default ")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:LastAddedProduct.ImageLarge.Default "); }

Outputting the template tag

<!--@Ecom:LastAddedProduct.ImageLarge.Default -->

Check if string has a value

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