MyBB Community Forums

Full Version: issues with usericons/newpoints shop
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
There are old threads relating to these issues but they're a little outdated. I am currently working on a forum that uses usericons and newpoints/shop to put items by usernames.


Problem 1: There are options to sell and send the items but not to display them by usernames. 

Problem 2: I'm not sure how to add the shop as an option on the user menu or navigation at the top of the site, to make the page more obvious. The end link is /newpoints.php but nobody's going to be able to get to that link unless they type it in manually.

If anyone has solutions for these, please reply or DM me on discord "ej#0021", I'd greatly appreciate it.
still looking for help with this
You can use this plugin to show your usericon next to your username https://community.mybb.com/mods.php?acti...w&pid=1405

And to add the option you can edit the header>header_welcomeblock_member template to only show the link for member
Example code
 <li><a href="newpoints.php" id="nav-coins"><i class="fas fa-cubes"></i>&nbsp; Newpoints</a></li>

For direct shop link
<li><a href="newpoints.php?action=shop" id="nav-coins"><i class="fas fa-cubes"></i>&nbsp; Credits</a></li>
(2022-01-20, 09:39 PM)Mahfuz Wrote: [ -> ]You can use this plugin to show your usericon next to your username https://community.mybb.com/mods.php?acti...w&pid=1405

And to add the option you can edit the header>header_welcomeblock_member template to only show the link for member
Example code
 <li><a href="newpoints.php" id="nav-coins"><i class="fas fa-cubes"></i>&nbsp; Newpoints</a></li>

For direct shop link
<li><a href="newpoints.php?action=shop" id="nav-coins"><i class="fas fa-cubes"></i>&nbsp; Credits</a></li>
tysm