XF 1.4 Show notice to the thread starter

zastavra

Active member
I couldn't find anything related in this forum, so my question is, how can I show a notice only to the thread starter - creator? I guess it's a Controller and Action thing but, what values should I use?
 
Do you mean inside the notice "Message" field, like this?
HTML:
<xen:if is="{$visitor.user_id} == {$thread.user_id}">
NOTICE TO THE THREAD STARTER HERE
</xen:if>
 
If you mean the Notices feature, no, you can't use it with that.

You would be able to use it in a template, assuming those variables are available in the particular template.
 
Top Bottom