modified it a bit:
this will add Personal Views to the posts
image:
in showthread.php
Find:
PHP Code:
$onlinestatus="";
}
Below that add:
PHP Code:
$personal0 = $DB_site->query_first("
SELECT SUM(views) AS personalviews FROM thread WHERE postuserid='$userinfo[userid]' AND open!='10'");
$personal= 2*$userinfo[posts]+$personal0[personalviews];
if ($personal0 == ""):
$personal0 = "0";
endif;
then edit template
postbit:
Find:
Code:
Posts: $post[posts]</smallfont></td>
Replace that with:
Code:
Posts: $post[posts]<br>
Personal Views: $personal </smallfont></td>
that should do the trick

have fun