MyBB Community Forums

Full Version: Display Newpoints cash
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Everyone

How are you?

I got New Points working perfectly on my website but how do I display the Points on the forum eg in the header of the forum when user is logged in. the only current way to see your cash is via profile and posts but would like to display it in header of the forum

what is the code that will make points display on the forum

cheers
tdbnz
Should be in plugin support.

You do this by using {$mycredits} in your templates, or in this case, your header template.

Good luck!
thanks will try that Smile

Edit: sorry that did not work Smile
The correct way (and currently the only way) is adding: {$mybb->settings['newpoints_main_curname']}: <a href="{$mybb->settings['bburl']}/newpoints.php">{$mybb->user['newpoints']} to your Header templates.
The first part gets the currency name, the second part give you the amount.

The author posted about it on a different site I think (sorry, I don't have the link). Although, doing so will show the actual amount including decimals, even if you don't use decimals for your board currency. And this does indeed belong to the Plugin Support section.
Moved to Plugin Support.
thanks will try this Smile