MyBB Community Forums

Full Version: Page Manager - add more to the breadcrumb?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've got the pagemanager installed and I love the fact it includes the name of the page you are on in the breadcrumb.

I was wondering however if there was a way I could modify what the breadcrumb links for each page are. Let me explain:

I have the following pages:

- Explanation page including rough outline of certain feature
Breadcrumb looks like: Forum index - Page 1
- Page going into more detail of that particular feature
Breadcrumb looks like: Forum index - Page 2

Now what I'd like to be able to do, is have the breadcrumb on page 2 look like this:
Forum index - Page 1 - Page 2

Is that possible? any help appreciated.
Call the function add_breadcrumb($name,$url="") twice.

In "Page 2", find:
add_breadcrumb($pages['name']);

Add directly before:
add_breadcrumb('Page_1_Name','misc.php?page=Page_1_URI');


Edit: "Use MyBB Template?" should be set to "no" and you should create your pages using the php template here.