Quote:
Originally Posted by MissKalunji
oh and thank you as well
speaking do you have any idea how to show the amount of gifts in postbit?
|
Yea man, add new plugin
Hook Location: showthread_postbit_create
Title: Gifts in Postbit Legacy
Execution Order: 5
Plugin PHP Code:
PHP Code:
$num_gifts = $db->query_first("
SELECT COUNT(*)
FROM " . TABLE_PREFIX . "gifts AS gifts
WHERE recipientid = " . $post['userid']
,DBARRAY_NUM);
$post['gifts'] = $num_gifts[0];
Plugin is active: yes
Then on the postbit where you want to display it just put
(<a href="member.php?$session[sessionurl]u=$post[userid]">$post[gifts]</a>) gifts