2014-05-28, 04:19 PM
2014-05-28, 05:05 PM
Open global.php and find:
Change $mybb->settings['bbname_orig'] to whatever you want
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
Change $mybb->settings['bbname_orig'] to whatever you want
2014-05-29, 07:19 PM
Thanks for the reply.
Edited global.php...
Code fix ?
Edited global.php...
$navbits[0]['name'] = click here for return to main menu from other pages;
...and homepage went blank. Code fix ?
(2014-05-28, 05:05 PM)marcus123 Wrote: [ -> ]Open global.php and find:
Change $mybb->settings['bbname_orig'] to whatever you want$navbits[0]['name'] = $mybb->settings['bbname_orig'];
2014-05-29, 08:49 PM
Strange because it works for all people. Use Notepad++ or Dreamweaver for PHP editing!
2014-05-29, 08:58 PM
Yes, am using Notepad++.
// Add our main parts to the navigation
$navbits = array();
$navbits[0]['name'] = click here for return to main menu from other pages;
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
(2014-05-29, 08:49 PM)marcus123 Wrote: [ -> ]Strange because it works for all people. Use Notepad++ or Dreamweaver for PHP editing!
2014-05-29, 09:17 PM
You need to put the string click here... in quotation marks.
2014-05-29, 09:35 PM
Thanks much !
Used...
$navbits[0]['name'] = "<font size=4>SCN Forums</font> (click here for return to main menu from other pages)";
...and worked fine.
Thanks again to both of you.
Used...
$navbits[0]['name'] = "<font size=4>SCN Forums</font> (click here for return to main menu from other pages)";
...and worked fine.
Thanks again to both of you.
(2014-05-29, 09:17 PM)dragonexpert Wrote: [ -> ]You need to put the string click here... in quotation marks.