MyBB Community Forums

Full Version: Newpoints questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to deduct points from a user automatically?
Are their any other plugins other than shop ?
On the top where it says :Home,Calender Member List ect.
How can i add another that can redirect my users to mysitehere.com/newpoints.php
or
how can i redirect a forum to go to mysitehere.com/newpoints.php
(2011-07-27, 01:44 AM)alsoyoutube Wrote: [ -> ]how can i redirect a forum to go to mysitehere.com/newpoints.php

http://wiki.mybb.com/index.php/Admin_CP_...um_Options
http://wiki.mybb.com/images/e/e4/ACP_Forum_Add.png (Forum Link )

(2011-07-27, 01:44 AM)alsoyoutube Wrote: [ -> ]Is it possible to deduct points from a user automatically?

Automatically not (unless you create a task for it)

(2011-07-27, 01:44 AM)alsoyoutube Wrote: [ -> ]Are their any other plugins other than shop ?
Yes, http://forums.mybb-plugins.com/Forum-Plugins

(2011-07-27, 01:44 AM)alsoyoutube Wrote: [ -> ]On the top where it says :Home,Calender Member List ect.
How can i add another that can redirect my users to mysitehere.com/newpoints.php

Search:
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.png" alt="" title="" />{$lang->toplinks_search}</a></li>

Duplicate it:
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.png" alt="" title="" />{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/newpoints.php"><img src="{$theme['imgdir']}/toplinks/IMAGE_PATH.png" alt="" title="" />NewPoints</a></li>

For questions regarding NewPoints, it is better to ask at the official author site:
http://forums.mybb-plugins.com/Forum-NewPoints
(2011-07-27, 02:47 AM)Sama34 Wrote: [ -> ]
(2011-07-27, 01:44 AM)alsoyoutube Wrote: [ -> ]On the top where it says :Home,Calender Member List ect.
How can i add another that can redirect my users to mysitehere.com/newpoints.php

Search:
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.png" alt="" title="" />{$lang->toplinks_search}</a></li>

Duplicate it:
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.png" alt="" title="" />{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/newpoints.php"><img src="{$theme['imgdir']}/toplinks/IMAGE_PATH.png" alt="" title="" />NewPoints</a></li>

For questions regarding NewPoints, it is better to ask at the official author site:
http://forums.mybb-plugins.com/Forum-NewPoints

thanks alot but in which place do i put the code and do i use both ?
Find:
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.png" alt="" title="" />{$lang->toplinks_search}</a></li>

Add after:
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.png" alt="" title="" />{$lang->toplinks_search}</a></li>

Modify the last code to your needs.

You can use a plugin as well:
http://mods.mybb.com/view/menu-manager
ok thanks