MyBB Community Forums

Full Version: Welcome box to guests
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hallo.

Is it possible to have a welcome message in a box or even better as the first announcement on portal for guest only?

Today I use proportal, and there I have made one thread that always stays on top of the announcement on portal.php.
I don't want this message to be on index or other sites, then I'll only use the standard in upper menu.

I'll use this box to welcome guests, and tell them about the forum.

Have tried this code, and it works, have set it in inside portal, above {announcements}

But is this any good code? I did just use the code from portal_welcome and set it inside <if>
Have also Conditionals in Template plugin to make me use if command


  <if $mybb->user['usergroup'] == "1" then>
  <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Welcome</strong></td>
</tr>
<tr>
<td class="trow1">
Some tekst
</td>
</tr>
</table><br /></if>