Support Forum

Newest Members displayed to registered forum users only?

SU SunRider
SunRider
Member

I read the topic “Hide Newest Members” but, although related, it does not address my question.  

Is there any way by which “Newest Members” can be displayed only to select groups.  I do not want unregistered guests  to be able to see the list of newest members, but I want the list visible to registered forum users.

7 Answers

New Answer

MP Mr Papa
Mr Papa
Member

just add a check before the newest members template tags in you spFoot.php template file..  change

        sp_NewMembers('tagClass=spLeft spNewMembers', __sp('Newest Members: '));

to

        if ($spThisUser->member) sp_NewMembers('tagClass=spLeft spNewMembers', __sp('Newest Members: '));

as always, we recommend a child theme or your own theme copy  rather than editing our themes to keep from losing changes on updates…