Forum:Thread.Author.[UserCustomFieldSystemName]

Version: - string  

Summary

Returns value of the custom field for user who is author of the thread.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Forum:Thread.Author.[UserCustomFieldSystemName]")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Forum:Thread.Author.[UserCustomFieldSystemName]"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Forum:Thread.Author.[UserCustomFieldSystemName]"); }

Outputting the template tag

<!--@Forum:Thread.Author.[UserCustomFieldSystemName]-->

Check if string has a value

<!--@If Defined(@Forum:Thread.Author.[UserCustomFieldSystemName])--> Let's output this tag here: <strong><!--@Forum:Thread.Author.[UserCustomFieldSystemName]--></strong> <!--@EndIf(@Forum:Thread.Author.[UserCustomFieldSystemName])-->