Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

Some Little Hacks/Tricks With Bread Crumbs!

$
0
0
Some Little Hacks/Tricks With Bread Crumbs! :

How to change the first breadcrumb from Forum Index to Home :

You need to edit the "Global.php" from the root.

Find this:
Code:
$navbits = array();
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

& then change it to:
Code:
$navbits = array();
$navbits[0]['name'] = 'Home' ;
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

How to remove the Category name when viewing any thread:

You are going to do this:
Index -> Category -> Forum -> Viewing Thread

To:
Index -> Forum -> Thread

You need to remove the following line from ./inc/functions.php around line 3300.
Code:
if($pforumcache[$forumnav['pid']])
               {
                   build_forum_breadcrumb($forumnav['pid']);
               }


How to change the link of "Index.php" from the first breadcrumb:

Again edit "Global.php" & edit
Code:
$navbits = array();
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

To:
Code:
$navbits = array();
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
$navbits[0]['url'] = 'http://yourlink.com' ;

I hope these little tricks will help you bit. Need to see a demo site too?

Viewing all articles
Browse latest Browse all 690

Trending Articles