Ecom:Product.Category.Name

Version: - string  

Summary

Returns the name of the product category.

Settings

The value is based on the Name field for the product category.

(Management center > Ecommerce > Product Catalog > Product categories > Product category > Name)

Examples

Outputting the template tag

@GetString("Ecom:Product.Category.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.Category.Name"); }

Outputting the template tag

<!--@Ecom:Product.Category.Name-->

Check if string has a value

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