Ok my subject is a bit hazy sorry.. I built a profile module that allows people registered to the site the ability to post their own profile Example Here. I would like to limit the ability to post a profile to a certain usergroup in the forums. Is this possible? How? I have no idea where to begin looking.
Thanks in advance 🙂
a very basic overview:
if ($usergroup == 'group that allows profiles') { // code to input your profile } else { echo 'sorry, your usergroup cannot input profiles'; }
wonderful 😃 thanks!