Support Forum
Hey Everyone!
I absolutely love Simple:Press. I've got it setup just the way I want it, except one thing:
Is there a way to remove the Forum Stats in the Footer?
I see there are options like update interval, top posters, and number of new users. But I don't see a place to disable it completely.
In an ideal world, I'd only want the Admin and Moderators to see that information.
If you can provide any assistance I'd really appreciate it.
Thanks!
-Josh
yes, the vast majority of display elements is controlled by your sp theme... so you can make any desired changes to the theme and have complete control over how your forum displays...
before changing your theme, we recommend making your own them rather than editing ours so you dont lose any changes should you update the theme... please see: http://codex.simple-press.com/.....g-a-theme/ for simple instructions on creating your own theme...
once you have your own theme, you will want to edit the template file that displays the stats... in this case, is spFoot.php since it appears in the footer of each sp page...
In this template file, you will find an entire section devoted to displaying the stats... it starts with:
# Start the 'stats' section
# ----------------------------------------------------------------------
sp_SectionStart('tagClass=spStatsSection', 'stats');
to completely remove the stats, simply remove the entire section and you wont have stats anymore...
Visit Cruise Talk Central and Mr Papa's World
if you only want admins and mods to see, make a check first... just change it to:
# Start the 'stats' section # ---------------------------------------------------------------------- if ($spThisUser->admin || $spThisUser->moderator) { sp_SectionStart('tagClass=spStatsSection', 'stats'); sp_ForumTimeZone('tagClass=spForumTimeZone', __sp('Forum Timezone: ')); sp_UserTimeZone('tagClass=spUserTimeZone', __sp('Your Timezone: ')); sp_InsertBreak(); sp_ColumnStart('tagClass=spColumnSection spLeft spOnlineStats&width=40%&height=0'); sp_OnlineStats('tagClass=spLeft', __sp('Most Users Ever Online: '), __sp('Currently Online: '), __sp('Currently Browsing this Page: '), __sp('Guest(s)')); if (function_exists('sp_OnlinePageLink')) sp_OnlinePageLink('', __sp('See All Online Activity')); sp_ColumnEnd(); sp_ColumnStart('tagClass=spColumnSection spRight spTopPosterStats&width=15%&height=0'); sp_TopPostersStats('tagClass=spRight', __sp('Top Posters: ')); sp_ColumnEnd(); sp_ColumnStart('tagClass=spColumnSection spRight spMembershipStats&width=20%&height=0'); sp_MembershipStats('tagClass=spRight', __sp('Member Stats: '), __sp('Members: %COUNT%'), __sp('Guest Posters: %COUNT%'), __sp('Moderators: %COUNT%'), __sp('Admins: %COUNT%')); sp_ColumnEnd(); sp_ColumnStart('tagClass=spColumnSection spRight spForumStats&width=17%&height=0'); sp_ForumStats('tagClass=spRight', __sp('Forum Stats: '), __sp('Groups: '), __sp('Forums: '), __sp('Topics: '), __sp('Posts: ')); sp_ColumnEnd(); sp_InsertBreak(); sp_NewMembers('tagClass=spLeft spNewMembers', __sp('Newest Members: ')); sp_InsertBreak(); sp_ModsList('tagClass=spLeft spModerators', __sp('Moderators: ')); sp_InsertBreak(); sp_AdminsList('tagClass=spLeft spAdministrators', __sp('Administrators: ')); sp_SectionEnd('tagClass=spClear', 'stats'); }
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)