To add a counter, in functions_showthread.php, replace :
PHP Code:
$thanks=$DB_site->query("SELECT * AS nb FROM ". TABLE_PREFIX ."thanks WHERE threadid='$thread[threadid]' ORDER BY username");
with
PHP Code:
$thanks=$DB_site->query("SELECT *, COUNT(userid) AS nb FROM ". TABLE_PREFIX ."thanks WHERE threadid='$thread[threadid]' GROUP BY userid ORDER BY username");
Add a phrase in your phrase manager
thanks_nb :
Code:
{1} people have clicked the THANKS button
ANd in your new postbit template
Add :
Code:
<phrase 1="$thank[nb]">$vbphrase[thanks_nb]</phrase>