Hi,
I want to add a message that if a user is part of a membergroup it say: hello member of usergroup x
And if not: sign up for this membergroup
How can I do that?
I should say I tried it with this code, where 9 is the group ID:
if( in_array(9, $context['user_info']['groups'] ) )
{
echo '<div class="smalltext">[premium member]</div>';
}
else
{
echo '<div class="smalltext"><a href="http://premium.weeklyfun.nl/forum/index.php?action=profile;area=subscriptions;u=">[become premium]</a></div>';
}
But that doesn't work!
Anyone who can help me out with this please?
No comments so far thus bumping this thread :)
Have a look at this (http://www.simplemachines.org/community/index.php?topic=298187.msg1969429#msg1969429) post.
Thanks Tenma! It works fine now!