Support Forum

Is there a way to remove "Unread and recently updated topics"?

KI Kimi
Kimi
Member

I can’t remember where this option is, but I could have sworn it was there. When my users are logged in, the “Unread and recently updated topics” topics don’t show up, which is GREAT and exactly what I want.  How can I remove this for those who aren’t logged in/guests? I think it looks messy and wish to remove it, but can’t for the life of me find it.

 

Thanks!

3 Answers

New Answer

MP Mr Papa
Mr Papa
Member

messy?  looks the same if logged in or not…  but, none the less…  just adjust the check for the template tag display…

In your sp theme, the group view template file, spGroupView.php, you will find this near the bottom:

        sp_RecentPostList('show=10', __sp('Unread and recently updated topics'));

just check for logged in…

        if (is_user_logged_in()) {
            sp_RecentPostList('show=10', __sp('Unread and recently updated topics'));
        }