Info
- 7 posts
- 4 voices
- Started 2 years ago by johnnydoe
- Latest reply from Adam Harley
- This topic is resolved
removing raquo/or » from breadcrumb
-
- Posted 2 years ago #
is there a way to remove the » arrow from the breadcrumb navigation without a core files tweak?
but of course, i'm interested in all possibilities.merci
-
- Posted 2 years ago #
Look in topic.php and forum.php in your template files, line 3 in the version I checked. Find this:
<?php bb_forum_bread_crumb(); ?>Make it look like this with your separator in place of
***:<?php bb_forum_bread_crumb(array('separator' => ' *** ')); ?>That will change the character for you.
-
- Posted 2 years ago #
cool beans, thanks!
-
- Posted 2 years ago #
Very good, thank you!
Yet there are pages where the standard separator stays untouched: see as an example the login/bb-login.phppage.Does it mean one have to change it in every template (or so) or is there a central location for such a customization, please?
-
- Posted 2 years ago #
Apart from the template files
forum.phpandtopic.phpthat use thebb_forum_bread_crumb()(which just builds the breadcrumb for forums / topics), the separator is also hardcoded into several (all?) other template files to give custom titles, which I'm afraid have to be changed by hand.The only central location would be the default of
bb_forum_bread_crumb(), which you shouldn't change. -
- Posted 2 years ago #
Well, it is good to know, at least.
Thank you. -
- Posted 2 years ago #
Programmer's Notepad + Find in Files = easy finding :)
-
You must log in to post.