Support Please, Custom Name for "Sticky Threads" and applied independently for Each?

komariah

Registered
I am looking if there is an addon which can do that.
For an example
On Forum Welcome, "Sticky Threads" change to "Updates"
On Forum Computer, "Sticky Threads" change to "Release Info"

It would be great if exist. Thank you so much for helping me out. Love this forum
 
Solution
PHP:
<xf:if is="!{$xf.visitor.user_id}">
This text can only be seen by guests
</xf:if>


PHP:
<xf:if is="{$xf.visitor.user_id}">
This text can only be seen by registered users
</xf:if>

Or:
PHP:
<xf:if is="{$xf.visitor.user_id}">
This text can only be seen by registered users
<xf:else />
This text can only be seen by guests
</xf:if>

</clown>

Loyal Member
PHP:
<xf:if is="!{$xf.visitor.user_id}">
This text can only be seen by guests
</xf:if>


PHP:
<xf:if is="{$xf.visitor.user_id}">
This text can only be seen by registered users
</xf:if>

Or:
PHP:
<xf:if is="{$xf.visitor.user_id}">
This text can only be seen by registered users
<xf:else />
This text can only be seen by guests
</xf:if>
 
Solution
Back
Top Bottom