MyBB Community Forums

Full Version: can I create internal web pages in MyBB..?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Iam using Zetaboards for my current website, they allow for internal pages to be built and i can link to them on the forum so you can build a website around your forum...

can MyBB do this?


thanks
It's very easy to create new pages in MyBB.

<?php

define("IN_MYBB", 1);
define('THIS_SCRIPT', 'newpage.php');

require_once "./global.php";

add_breadcrumb("My New Page", "newpage.php");

if(!$mybb->input['action']) {

$message = '
This is my new page.
';

error($message, "My New Page");

}

?>

Alternatively, you can use the page manager plugin.
I think plugin is best for me, where will i find this page manager?
do the links appear next to the standard forum links?
are there any good theme websites for MyBB?

thanks for your help I really appreciate it
(2011-10-23, 03:00 PM)snadge Wrote: [ -> ]I think plugin is best for me, where will i find this page manager?
do the links appear next to the standard forum links?
are there any good theme websites for MyBB?

thanks for your help I really appreciate it

page manager will help you create the pages, but it will not insert the menu options/links for you. you can edit the header template to make the links you need