Tips Conditional Statements for XenForo 2

Compatible XF 2.x versions
  1. 2.x
Conditional Statements for XenForo 2

The conditional statements can be expanded by using AND, OR conditional statements operators and using xf:if, xf:else, xf:elseif.

If there are any conditional statements that you want to add, please add it as a message and the article will be updated.

1. How can I show content to Administrators?
Code:
<xf:if is="$xf.visitor.is_admin">
        Show content...
    </xf:if>
2. How can I show content to Moderators?
Code:
<xf:if is="$xf.visitor.is_moderator">
      Show content...
    </xf:if>
3. How can I show content to Administrators and Moderators?
Code:
<xf:if is="$xf.visitor.is_admin OR $xf.visitor.is_moderator">
        Show content...
    </xf:if>
4. How can I Show content for member?
Code:
<xf:if is="$xf.visitor.user_id">
      Show content...
    </xf:if>
5. How can I Show content if not a member?
Code:
<xf:if is="!$xf.visitor.user_id">
       Show content...
    </xf:if>
6. How can I show different content to members and guests?
Code:
<xf:if is="!$xf.visitor.user_id">
      Show only members
    <xf:else />
    Show only guests
    </xf:if>
7. How can I Show content for banned members?
Code:
<xf:if is="$user.is_banned">
      Show content...
    </xf:if>
8. How can I show content from x if the user's likes is bigger?
Code:
<xf:if is="$user.like_count|number > x">
       Show content...
    </xf:if>
9. How can I show content from x if the user's message is bigger?
Code:
<xf:if is="$user.message_count|number > x">
       Show content...
    </xf:if>
10. How can I show content from x if the user's points is bigger?
Code:
<xf:if is="$user.trophy_points|number > x">
      Show content...
    </xf:if>
11. How can I show content to a specific member?
Code:
<xf:if is="$xf.visitor.user_id == x">
       Show content...
    </xf:if>
12. How can I show content to more than one member?
Code:
<xf:if is="in_array($xf.visitor.user_id, [x, x, x, x])">
       Show content...
    </xf:if>
 

Similar threads

October 2024

Total amount
$156.55
Goal
$400.00
Donation ends:

Staff online

Members online

Forum statistics

Threads
10,647
Messages
28,702
Members
47,986
Latest member
iyed
Top