Ofcourse it is. The following code executes if either the visitor is not a member, or is a member but has less than 1 post: <if test="count($this->memberData['posts']) < 1 || !$this->memberData['member_id']"> <div class="globalmessage"> <b>Welcome new user, to our website! Lorem ipsum dolor!</b> </div><br /></if> Ofcourse you can remove the post check and modify the code to make it an if/else like so: <if test="!$this->memberData['member_id']"> <div class="globalmessage"> <b>Welcome new user, to our website! Lorem ipsum dolor!</b> </div><br /><else> <div class="globalmessage"> <b>Thanks for posting your introduction, enjoy your stay!</b> </div><br /></if> Hope this helps. Be sure to have CSS ready for these messages.