Ecom:LastAddedProduct.ImageSmall.Default.Clean
Version: - stringSummary
Returns an URL for the small (default) image for the product.
Settings
The value is based on the Small input field under the ecommerce no image settings.
(Management Center - Ecommerce - Advanced - Images - No image - Small)
Examples
Outputting the template tag
@GetString("Ecom:LastAddedProduct.ImageSmall.Default.Clean")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Ecom:LastAddedProduct.ImageSmall.Default.Clean"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Ecom:LastAddedProduct.ImageSmall.Default.Clean");
}
Outputting the template tag
<!--@Ecom:LastAddedProduct.ImageSmall.Default.Clean-->
Check if string has a value
<!--@If Defined(@Ecom:LastAddedProduct.ImageSmall.Default.Clean)-->
Let's output this tag here: <strong><!--@Ecom:LastAddedProduct.ImageSmall.Default.Clean--></strong>
<!--@EndIf(@Ecom:LastAddedProduct.ImageSmall.Default.Clean)-->