MyBB Community Forums

Full Version: Upgrade Page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Does anyone know any good upgrade/page plugins,
MybbCentral gots one (But I believe you need to be a paid user)
http://www.mybbcentral.com/thread-5866.html
But if you're looking at the free route then here:
http://mods.mybb.com/view/vip-membership
Thank you Ace700

But I'm looking for something more like forumkorners or forumcamps:
http://www.forumkorner.com/upgrade.php
http://www.forumcamp.com/upgrade.php
It does look okay, do you know if it's a full page or only on index? P.s thank you.
I believe it inherits the mybb header/footer/index. I have no use for the plugin, but you can always edit the code.
If you want there is a paid plugin to do this: http://forums.mybb-plugins.com/Thread-My...ptions-1-5
Lowseling, Thanks for the share Smile
Some simple .php code and HTML does the trick.

1. do a file called upgrade.php
2. copy this code and paste it into "upgrade.php"
<?php 

define('IN_MYBB', 1); require "./global.php";

add_breadcrumb("Upgrade page", "upgrade.php"); 

eval("\$html = \"".$templates->get("upgrade")."\";"); 

upgrade($html);

?>
3. upload it to the root directory.
4. go to acp > templates > create a new one called "upgrade"
5. paste this code:
<img src="where ever your upgrade user bar image is"/>
<br>
<br>
<div>Features:</div>
<br>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason/li>
<li>Reason</li>
<br>
<div>The current price is $XX USD.</div>
<br>
<div><b>TOS 1</b></div>
<div><b>TOS 2</b></div>
<div><b>TOS 3</b></div>
</div>
<br>
<div>More information can be found <a href =LINK THIS TO YOUR HELP DOCUMENT ON MEMBER UPGRADES>here</a></div>
<br>

^ taken from: http://community.mybb.com/thread-121563-...#pid878941

I hope it works out for you, good luck!
(2014-07-10, 07:32 PM)PhantomD Wrote: [ -> ]Some simple .php code and HTML does the trick.

1. do a file called upgrade.php
2. copy this code and paste it into "upgrade.php"
<?php 

define('IN_MYBB', 1); require "./global.php";

add_breadcrumb("Upgrade page", "upgrade.php"); 

eval("\$html = \"".$templates->get("upgrade")."\";"); 

upgrade($html);

?>
3. upload it to the root directory.
4. go to acp > templates > create a new one called "upgrade"
5. paste this code:
<img src="where ever your upgrade user bar image is"/>
<br>
<br>
<div>Features:</div>
<br>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason</li>
<li>Reason/li>
<li>Reason</li>
<br>
<div>The current price is $XX USD.</div>
<br>
<div><b>TOS 1</b></div>
<div><b>TOS 2</b></div>
<div><b>TOS 3</b></div>
</div>
<br>
<div>More information can be found <a href =LINK THIS TO YOUR HELP DOCUMENT ON MEMBER UPGRADES>here</a></div>
<br>

^ taken from: http://community.mybb.com/thread-121563-...#pid878941

I hope it works out for you, good luck!

I'll give this a Try, thanks man! Smile
Pages: 1 2