CODE: SELECT ALL
Code: Select all
{% if S_USERNAME eq "wads24" %}
Some content here
{% endif %}CODE: SELECT ALL
Code: Select all
{% if S_USER_LOGGED_IN %} If a user is logged in {% endif %}
{% if S_USER_LOGGED_IN %}your content here (for users logged in){% ELSE %}your content here (for viewing as a guest){% endif %}
{% if S_REGISTERED_USER %} If user is logged in and not a bot {% endif %}
{% if S_AUTOLOGIN_ENABLED %} If auto login is allowed {% endif %}
{% if S_BOARD_DISABLED %} If board is disabled {% endif %}
{% if S_IS_BOT %} If a bot {% endif %}
{% if S_USER_PM_POPUP %} If pop up pm is on {% endif %}
{% if S_DISPLAY_SEARCH %} If displays search {% endif %}
{% if S_DISPLAY_PM %} If display a PM {% endif %}
{% if S_DISPLAY_MEMBERLIST %} If display memberlist.php {% endif %}
{% if U_MCP %} If Moderator {% endif %}
{% if U_ACP %} If Administrator {% endif %}
{% if S_IS_LINK %} If its a link {% endif %}
{% if S_UNREAD_FORUM %} If forum is unread {% endif %}
{% if S_READ_FORUM %} If forum is read {% endif %}
{% if S_LOCKED_FORUM %} If forum is locked {% endif %}
{% if S_LIST_SUBFORUMS %} If there is a list of subforums {% endif %}
{% if S_SUBFORUMS %} If a subforum {% endif %}
{% if S_IS_CAT %} If a category {% endif %}
{% if S_IS_POST %} If a post {% endif %}
{% if FORUM_ID %} Displays the code between the switches if the user is viewing a particular forum. {% endif %}
{% if SCRIPT_NAME == "index" %}some content{% endif %} (Others you can use, viewtopic,viewforum,memberlst,faq etc)