MyBB Community Forums

Full Version: Newpoints PM
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The newpoints field isn't displayed in the postbit when you receive a PM. How can I fix this? Can't seem to find the right template.
Open ./inc/plugins/newpoints/core/hooks.php and find:
$plugins->add_hook('postbit', 'newpoints_postbit', 50); // set priority to 50

Change it to:
$plugins->add_hook('postbit', 'newpoints_postbit', 50); // set priority to 50
$plugins->add_hook('postbit_prev', 'newpoints_postbit', 50);
$plugins->add_hook('postbit_pm', 'newpoints_postbit', 50);
$plugins->add_hook('postbit_announcement', 'newpoints_postbit', 50);

It should work but please note that the newpoints_postbit is not being cached in those pages (private.php, announcements.php, newreply.php, editpost.php, and newreply.php).
Works perfect.