MyBB Community Forums

Full Version: custom upgrade page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I have 4 upgrades (With userbars etc) but I have no idea how to make an upgrade page, i don't want it glowing or anything.
examples: http://i.imgur.com/Y1T2ruC.png
http://i.imgur.com/LicKL9v.png

Something really simple so users can buy their upgrades already. Our developer is falling behind and being lazy so yah XD Thanks guys.
HTML does the trick.
(2015-02-01, 11:41 AM)PhantomD Wrote: [ -> ]HTML does the trick.

Thanks for the tip but it didn't really solve the problem XD Smile
Hopefully this will help you.

(Upload to ROOT directory, basically into public_html or whatever).

For the php page, please look down a bit.

Next step
ACP > Templates > Your theme(s) template > Create a new template called "upgrade" (without quotes)

Now for the content, hopefully you know html.


<html>
 <head>
 <title>Upgrade</title>
 {$headerinclude}
 </head>
 <body>
 {$header}
 <table border="0" cellspacing="1" cellpadding="4" class="tborder">
 <tr>
 <td class="thead"><span class="smalltext"><strong>Upgrades</strong></span></td>
 </tr>
 <tr>
 <td class="trow1">

Custom stuff in here.
 
 </td></tr></table>
 {$footer}
 </body>
 </html>


When done, save it and voilá. You can now access it by going to forumurl.com/upgrade.php


(2015-02-02, 04:58 PM)PhantomD Wrote: [ -> ]Hopefully this will help you.

(Upload to ROOT directory, basically into public_html or whatever).

For the php page, please look down a bit.

Next step
ACP > Templates > Your theme(s) template > Create a new template called "upgrade" (without quotes)

Now for the content, hopefully you know html.



<html>
 <head>
 <title>Upgrade</title>
 {$headerinclude}
 </head>
 <body>
 {$header}
 <table border="0" cellspacing="1" cellpadding="4" class="tborder">
 <tr>
 <td class="thead"><span class="smalltext"><strong>Upgrades</strong></span></td>
 </tr>
 <tr>
 <td class="trow1">

Custom stuff in here.
 
 </td></tr></table>
 {$footer}
 </body>
 </html>


When done, save it and voilá. You can now access it by going to forumurl.com/upgrade.php


Thank you very much Smile
where is php page?
(2015-12-26, 02:51 PM)Dr_The_One Wrote: [ -> ]where is php page?

you can put the html in side the .php