Support Forum
its all controlled by the theme and template functions... so you can remove (or add) whatever you want...
see: http://codex.simple-press.com/.....ledgments/
that deals with the acknowledgments, but applies to the stats too which are also in the spFoot.php template file... just different function calls you want to remove... if you look at that file, think it will be obvious, but if not, please come on back...
Visit Cruise Talk Central and Mr Papa's World
FYI,
I did not want to change the template for this small change (and lose the ability to apply future updates with a click).
I decided to simply hide the stats using CSS:
/* Remove the stats section */
#spMainContainer .spStatsSection,
#spMainContainer .spNewMembers,
#spMainContainer .spAdministrators { display: none; }
Of course a user could do "view source" and see the stats - but that's not a concern in this case.
Regards
yes... stats are shown in the spFootphp template file... so edit that file in your sp theme... if you dont have your own sp theme, please create one vs editing ours to keep from losing changes on an upgrade...
like earlier in the this thread, find the stats display stuff... instead of removing, surround it by an if statement... like this:
if ($spThisuser->member) { # all the display code here }
that way its just shown for members...
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)