Ecom:Product.CategoryField.Label

Version: - string  

Summary

Returns the name of the product category field.

Settings

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

(Management center > Ecommerce settings > Product Catalog > Product categories - Product category - Fields - Field - Name)

Examples

Outputting the template tag

@GetString("Ecom:Product.CategoryField.Label")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.CategoryField.Label"); }

Outputting the template tag

<!--@Ecom:Product.CategoryField.Label-->

Check if string has a value

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