Forum Authority

Full Version: [MyBB] NewPoints: How to display balance?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can you show the balance of the credits on the NewPoints plugin on MyBB?

If you don't know what I mean:
[Image: 3928c69251b403fa32b66938a90c276c.png]
Is there some kind of tag for the plugin that I can use?
It is a piece of html code.
You can hook into the plugin with template hooks.
Code:
{$newpoints_profile}
This will give you the whole row.

In order to get the amount, you can use:
Code:
memprofile['newpoints']}
(01-02-2017, 03:54 PM)katos Wrote: [ -> ]You can hook into the plugin with template hooks.
Code:
{$newpoints_profile}
This will give you the whole row.

In order to get the amount, you can use:
Code:
memprofile['newpoints']}

Sorry for the late reply, and thanks!