[Plugin: Really Simple Breadcrumb] Some usefull tips…
-
Nice, simple plug-in – thank you!
Some helpful tips for other users…
If you are adding the class ‘.breadcrumb’ to your themes css, you will need to add the ‘!important’ property to your padding and font-size styles, within the class, as the plug-in adds it’s own ‘.breadcrumb’ class styles into the head of the document and without ‘!important’ these will take priority.
The ‘Home’ link of the breadcrumb currently uses the blogs name as the text for the link. To change this to ‘Home’ (or whatever you require) change the following line in ‘breadcrumb.php’:
bloginfo('name');
to:
echo "Home";
To exclude breadcrumbs from the homepage, change the line you added to page.php (or wherever you put it) from:
<?php if(function_exists(simple_breadcrumb)) {simple_breadcrumb();} ?>
to:
<?php if(function_exists(simple_breadcrumb) && !is_front_page()) {simple_breadcrumb();} ?>
https://www.ads-software.com/extend/plugins/really-simple-breadcrumb/
- The topic ‘[Plugin: Really Simple Breadcrumb] Some usefull tips…’ is closed to new replies.