timetraveler
Member
I need some custom BBcode for my forum, but I want to show a register link to users.
I tried with conditionals as seen here but I got no luck.
If I use the third conditional, "how can I show different content to guests and logged in members?" as in this example:
The resulting (parsed) BBcode is:
Seems that conditionals are only ignored...
I tried with conditionals as seen here but I got no luck.
If I use the third conditional, "how can I show different content to guests and logged in members?" as in this example:
Code:
<xen:if is="{$visitor.user_id}">
This content will show to logged in members
<xen:else />
This content will show to guests
</xen:if>
Code:
This content will show to logged in membersThis content will show to guests
Seems that conditionals are only ignored...