Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
This will work fine since you're checking the viewing users user id against 0.[cb:if user="#me" user_id<="0"]
This should also work. You're checking that the viewing users user id isn't in the supplied list.[cb:elseif user="#me" user_id!~"/Admin1_id|Admin2_id/"] [/cb:elseif]
This will never work. You're checking that the viewing user isn't them self, which makes no sense. "user" should be set to #displayed if you're trying to be sure the viewing user isn't the currently displayed user.[cb:elseif user="#me" user_id="myid"] [/cb:elseif]
This will never work as else can not have conditions. This should be an elseif.[cb:else user="#me" viewaccesslevel !includes "18"]
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.