![]() |
|
#1
|
|||
|
|||
|
1) Open your cmps_index.php (or whatever you've renamed it).
Find: PHP Code:
PHP Code:
PHP Code:
PHP Code:
2) In your forum directory open modules/stats.php. Find: PHP Code:
PHP Code:
3) In your admin control panel go to Styles & Templates > Template Manager and click the «» button to show the templates. In vBadvanced CMPS Templates open adv_portal_stats. At the very end (or wherever you prefer to place it) add: Code:
<tr> <td class="thead"><a href="http://yoursite.com/linksdirectory/$session[sessionurl_q]">$vbphrase[links]</a></td> </tr> <tr> <td class="$bgclass"> <span class="smallfont">$vbphrase[directories]: $stats[linkcategories]<br /> $vbphrase[links]: $stats[links]<br /> $vbphrase[posts]: $stats[linkposts]<br /> $vbphrase[total_views]: $stats[linkviews]<br /></span> </td> </tr> That's it. Enjoy!
__________________
Rob. |
|
#2
|
|||
|
|||
|
Excellent work, thank you very much Rob.
|
|
#3
|
|||
|
|||
|
You are very welcome. I hope it works for you.
__________________
Rob. |
|
#4
|
|||
|
|||
|
esta muy bueno este manual quizas te sirva de algo esto www.zonagamerz.comantes de todo esto seria mejor que creemos un punto de restauracion para no perder nuestros estilos amigos graciaz
|
|
#5
|
|||
|
|||
|
$getlinkcats = $db->query("SELECT linkcount, postcount FROM " . TABLE_PREFIX . "adv_links_categories");
while ($linkcats = $db->fetch_array($getlinkcats)) { $stats['linkcategories']++; $stats['links'] += $linkcats['linkcount']; $stats['linkposts'] += $linkcats['postcount']; } $stats['linkcategories'] = number_format($stats['linkcategories']); $stats['links'] = number_format($stats['links']); $stats['linkposts'] = number_format($stats['linkposts']); $getlinkstats = $db->query_first("SELECT SUM(views) AS views FROM " . TABLE_PREFIX . "adv_links WHERE valid = 1"); $stats['linkviews'] = number_format($getlinkstats['views']); |
|
#6
|
|||
|
|||
|
just one thing not displaying categories name? any help
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [REQ] - Additional Stats in the Stats Module | interfx | Module & Modification Discussion & Requests | 1 | 12-31-2005 09:51 AM |
| Combo Forum Stats / Gallery Stats | mholtum | Troubleshooting / "How do I..." Questions | 7 | 06-01-2005 02:34 PM |