MyBB Community Forums

Full Version: Custom Forum Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Ever see those vBulletin or IPB forums that have custom pages inside of them? Well now you can with MyBB!

Demo: http://vg-games.uni.cc/board/test.php

Questions or problems please post it here.

Hopefully this leads to some good future mods.
Very nice Cool never had the time to figure it all out thax alot!
thnx for the feedback, oh yea some positive rep would be nice too lol
Very nice. However your missing 2 bits of code needed to make it 100%. It should be
<?php
require "./global.php";

[b]$templatelist = "test";
addnav("Test Page");[/b]

eval("\$test = \"".$templates->get("test")."\";");
outputpage($test);
?>
But you'll have to do a lot more stuff to get positive reps!
k776 Wrote:Very nice. However your missing 2 bits of code needed to make it 100%. It should be
<?php
require "./global.php";

[b]$templatelist = "test";
addnav("Test Page");[/b]

eval("$test = "".$templates->get("test")."";");
outputpage($test);
?>
But you'll have to do a lot more stuff to get positive reps!

cant blame a guy for tryin lol...ne ways the original code worked fine for me
$templatelist = "test";
should be before the global.php requirement.
thanks! this'l be a great foundation for building a mod!
Yep, I used k776's method and it's working great (even though my site is down...)

If you create new settings via admin cp, you can write up your content through there, even give it it's own custom title and even turn it on or off.
Im attempting to work through that and release a 1.0.1 version
A Big THANK YOU from me
Pages: 1 2