Quote:
Originally Posted by Noctavia
Would anyone have any idea on this? I've been looking over the .php and .xml files, but as I am not sure what to look for exactly, I am getting a bit stumped. Basically I don't want the thank you box to even show unless 3 or more people say thanks.
|
Just create a simple plugin for hook location:
post_thanks_function_post_thanks_off_end
Untested, but something like this:
PHP Code:
$sql = $vbulletin->db->query_first("SELECT COUNT(post_thanks_votenum) AS qty FROM " . TABLE_PREFIX . "post AS post WHERE postid = " . $postinfo['postid'] . " AND qty < 3");
if ($sql['qty'])
{
return true;
}
Within the query, change the 3 to minimum quantity of times a post should be thanked before displaying, and I think it'll give you what you need.