Displaying number of members

Register an Account
Pligg Chat Room
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-21-2008, 11:20 AM
Banned
Pligg Version: 9.8.
Pligg Template: Custom
 
Join Date: Feb 2007
Location: Canada
Posts: 796
To display the number of members currently registered on your site:

1. libs/smartyvariables.php

Code:
// show count of members
$members = $db->get_var('SELECT count(*) from ' . table_users . ';');
$main_smarty->assign('members', $members);
2. add the following where you want it to appear on your site

Code:
Members: {$members}
Thats it. Now its just a matter of styling. You don't need the part in red.

Heres how it looks on my site:



Geoserv

My first working mod.

Last edited by Geoserv; 01-21-2008 at 11:45 AM.
Reply With Quote
  #2 (permalink)  
Old 01-21-2008, 05:35 PM
New Pligger
 
Join Date: Sep 2007
Posts: 19
Fantastic! Thanks...

Luxa - Photoshop Tutorials, Videos, Brushes, Tips & Tricks
Reply With Quote
  #3 (permalink)  
Old 01-22-2008, 10:37 AM
New Pligger
 
Join Date: Sep 2007
Posts: 19
Here's a quick fix to add a comma if in the thousands.

Code:
$members = $db->get_var('SELECT count(*) from ' . table_users . ';');
$format_members = number_format($members);
$main_smarty->assign('members', $format_members);
Reply With Quote
  #4 (permalink)  
Old 01-22-2008, 11:08 AM
Banned
Pligg Version: 9.8.
Pligg Template: Custom
 
Join Date: Feb 2007
Location: Canada
Posts: 796
Thanks for the addition.

Geoserv
Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Change number of votes using the news management gnalkit Questions and Comments 4 12-30-2009 05:51 AM
Set the minimum number of characters for the tags. clems365 Questions and Comments 2 05-27-2008 03:51 PM
Displaying number of Published Geoserv Questions and Comments 0 01-22-2008 07:21 PM
Display number of members mightyb Questions and Comments 3 01-21-2007 09:51 AM
Number of top stories allowed ngrad Questions and Comments 5 07-07-2006 10:52 PM


Pligg Modules and Pligg Templates from Pligg Pro Find support on the Pligg CMS Forum - 24 hours a day! Make a donation to support Pligg CMS development