| Tutorials Main Latest Tutorials Popular Tutorials Top Rated Tutorials |
| Login to See your Favorite Tutorials |
| 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) | |
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 />'." "; } |
| Code: |
| if ($userinfo['user_posts']) { echo 'Forum Post <b>'.$userinfo['user_posts'].'</b><br />'; } |