[TemplateTag].Value.Fullpath

Version: - string  

Summary

The value of the input field for the product group field.

Settings

The value is based on the product group field on the product group edit page.

(Ecommerce - Product Group - Edit group - Product group fields - Product group field)

Remarks

Mainly used together with fields of the type link or File manager.

Contains /Files/Files or /Files/Images if Link or File manager is used.

Examples

Outputting the template tag

@GetString("[TemplateTag].Value.Fullpath")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("[TemplateTag].Value.Fullpath"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("[TemplateTag].Value.Fullpath"); }

Outputting the template tag

<!--@[TemplateTag].Value.Fullpath-->

Check if string has a value

<!--@If Defined(@[TemplateTag].Value.Fullpath)--> Let's output this tag here: <strong><!--@[TemplateTag].Value.Fullpath--></strong> <!--@EndIf(@[TemplateTag].Value.Fullpath)-->