Wow, thanks kindly!
--------------- Added [DATE]1362599861[/DATE] at [TIME]1362599861[/TIME] ---------------
Well, the 'Thanks' hack works fine and the stats for each member display in the posts and appear to update and track properly. But the 'Thanks' stats lines messed up a couple of member profile information fields that I've add to the posts in a plugin using the following code:
Code:
if ($post['field6'])
{
$template_hook['postbit_userinfo_right_after_posts'] .= "'<dt>My Field Name 1</dt> <dd>' . $post[field6] . '</dd>'";
}
if ($post['field5'])
{
$template_hook['postbit_userinfo_right_after_posts'] .= "'<dt><b>My Field Name 2</b></dt> <dd>' . $post[field5] . '</dd>'";
}
Does anyone know how to fix that or a better way to add those profile fields to the posts?