Ecom:Order:OrderLine.ProductName.Short

Version: - string  

Summary

Returns a short product name for the orderline.

Settings

The value is based on the Name input field under the General tab for a product.

(Ecommerce > Product Catalog > Product group/product > Details > Settings)

Remarks

The tag outputs the first 25 characters of the product name.

Examples

Outputting the template tag

@GetString("Ecom:Order:OrderLine.ProductName.Short")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Order:OrderLine.ProductName.Short"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order:OrderLine.ProductName.Short"); }

Outputting the template tag

<!--@Ecom:Order:OrderLine.ProductName.Short-->

Check if string has a value

<!--@If Defined(@Ecom:Order:OrderLine.ProductName.Short)--> Let's output this tag here: <strong><!--@Ecom:Order:OrderLine.ProductName.Short--></strong> <!--@EndIf(@Ecom:Order:OrderLine.ProductName.Short)-->