Clan Adverts

www.afgserv.com

 

Adding user post count to Your Account profiles

Description: This little hack will add the post count for a user to the your account profile
Version: 1.0
Added on: 11 May 2007
Author: floppy
Difficulty Level: Very Easy
Views: 499
Rating: 10.0 (2 Votes)
Detailed ProfileView Comments (1)

In modules/Your_Account/index.php

Find (around line 415 in the userinfo function)

Code:
if ($userinfo['user_website'] != 'http://' AND !empty($userinfo['user_website'])) { echo _MYHOMEPAGE.' <a href="'.$userinfo['user_website'].'" target="_blank">'.$userinfo['user_website'].'</a><br />'."
"; }


Above Add

Code:
if ($userinfo['user_posts']) { echo 'Forum Post <b>'.$userinfo['user_posts'].'</b><br />'; }


Thats it!