MyBB Community Forums

Full Version: How to show message for selected group only
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to show some message to guest only. how can i do that? i tried to add on index template, but it's also visible for other group as well. any help please?

<if $mybb->user['uid'] <= '1' then>
here is my message
</if>
add your code to

Header Templates > header_welcomeblock_guest


With css , change your element position
Hello,

To be able to use template conditionals you need a plugin like http://mybbhacks.zingaburga.com/showthread.php?tid=464
(2021-07-09, 04:44 AM)Mostafa.Shiraali Wrote: [ -> ]add your code to

Header Templates > header_welcomeblock_guest


With css , change your element position

ty i will try Smile

(2021-07-09, 07:01 AM)Erikbe Wrote: [ -> ]Hello,

To be able to use template conditionals you need a plugin like http://mybbhacks.zingaburga.com/showthread.php?tid=464

thank you, i will check that plugin.