PDA


View Full Version : Add New Links to User CP Module of CMPS?


kittymother
08-06-2004, 09:35 AM
How would I add a line to the User CP Module of CMPS to reflect the number of new links added since the member last visited?

Welcome back admin

You last visited: 08-05-04 at 9:58 pm
New PMs: 0
New posts: 2
New links: X (this would be the new line)
Log Out

Brian
08-06-2004, 02:15 PM
If you'll look in your /forum/modules/welcomeblock.php file for:

$newposts = number_format($getnewposts['count']);

Right below that, add:

$newlinks = $DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "links WHERE dateline >= '$bbuserinfo[lastvisit]'");

Then just add $newlinks[count] to your adv_portal_welcomeblock template where you want the number to appear. :)

kittymother
08-06-2004, 09:13 PM
Thank you for the info.