PDA

View Full Version : custom usertitle condition in template


squishi
01-05-2012, 07:37 PM
In a template, how can I check if a user has a custom usertitle?

Along the lines of... (pseudo code)
<if condition="has_custom_usertitle == true">$post[usertitle]</if>

kh99
01-05-2012, 11:50 PM
Try this:

<if condition="$post['customtitle']">$post[usertitle]</if>

squishi
01-06-2012, 05:59 PM
Thank you very much.