breadcrumbs

How do I remove HOME from breadcrumb

I am using Drupal 6.17 and want to get rid of "HOME" in the breadcrumb output... eg: $breadcrumb= PRODUCTS // SOFTWARE // FEATURES instead of HOME // PRODUCTS // SOFTWARE // FEATURES ...

Wordpress 3 - using wp_nav_menu function to generate breadcrumbs

Hi, I'm working on a site that is using the new wp_nav_menu function. What I'm wanting to do is use the wp_nav_menu to generate breadcrumbs on my site rather than using a plugin that generate the breadcrumbs from the URL. This is because I'm using a custom link in the menu, which doesn't register in the breadcrumbs. Has anyone looked...

How to create breadcrumb in asp.net mvc

I want to create breadcrumb for my whole application in asp.net mvc. I have idea of how to create sitemap control in asp.net but how to create in asp.net mvc? ...

IIS7 URL Rewrite - SiteMapPathNode not rendered if rewritten URL used

I have the following rules to redirect a.aspx?id=99 to a/99 and rewrite a/99 to a.aspx?id=99. It works. The SiteMapPath for the page does not render if the url for SiteMapNode is a, but it does if it is a.aspx. In other pages where there is no querystring in the url, I can use pagename as the SiteMapNode url or pagename.aspx - both ...

Creating a graphical breadcrumb or process trail in .NET MVC 2

I have a breadcrumb structure similar to the image above. It displays the progress trail of the forms, the form names and the current page being displayed and it also gives the user a guide to the start and end of the process. This was originally put together in classic ASP. What would be the best approach to recreating this in MVC 2 ...

How to create a sitemap using jQuery

I have following markup <div id="mnuMain"> <ul> <li><a href="#">Dashboard</a></li> <li><a href="#">Market Trends</a></li> <li><a href="#">Master</a> <ul> <li><a href="#">Products</a></li> <li><a href="#">Segments</a></li> <li><a href="#" >Companies</...

Can I add Microdata from HTML5 to a XHTML Strict site and still be compliant?

Hi I've got a site coded in XHTML 1.0 Strict. I want to use the new Microdata to add breadcrumbs to my site (so Google will understand them). My old non-microdata marked-up breadcrumbs look like this: <ul> <li><a href="...">Level 1</a></li> <li><a href="...">Level 2</a></li> <li><a href="...">Level 3</a></li> </ul> According t...

php tree class/array structure to breadcrumbs

Basically i received an API SOAP response of a list of categories in an class format as in array kind of way with CatID, name, parentID, level. What is the best way to turn this into an array of breadcrumbs for each CatID. I want to try reduce the number of operation as the array will be created on the fly to populate a drop down me...

Get Joomla! category from an URL

How can I read the section a certain URI belongs to? I want to enhance the mod_breadcrumb to put section and category into the HTML. JApplication->getPathway() returns a JPathway which basically holds an assiciative array combining a name and an URL (as $list[]->name and $list[]->link). I think, it should be possible to get the section ...

Zend Framework Navigation - dynamically adding parameters

Hello.. I am experimenting with Zend_Navigation to build breadcrumb for a web site. I created an XML file which lists the hierarchy of pages. Things are working fine for the most part except for pages that have dynamic parameters. For example, there is a group page which has the URL " www.../groups/gid/1001". The id 1001 is dynamic so i...

Breadcrumb library for Codeigniter

I am looking for a breadcrumb library for codeigniter, I found one called DTE but I'm not sure if I want to use it because it seems all support is gone for the library itself. can anyone recommend one? ...

Trimming a breadcrumb

I'm currently struggling with the problem of trimming a breadcrumb navigation so it doesn't destroy my site's design. The problem is the following: The breadcrumb navigation has a fixed width (let's say 900px) - So, if the user navigates to an item whose location results in a breadcrumb that is larger than 900px I'd have to trim it to f...

Eclipse plugin : Get the enclosing class and member name

I have created a Eclipse plug in to printout the object in selection on press of a short cut key. I have been able to do this ,but i also would like to add the current method and current class name in the log. I am not sure how to proceede further. I tried to search for breadcrumb API but i was not able to reference the package from my ...

php: simple breadcrumb solution?

hey guys, i'm working on a very simple breadcrumb-path solution, however i have one little thing that kind of bugs me. PATH is e.g. folder/subfolder/subsubfolder i'm simply splitting the PATH and i'm creating links to it. really simpel. // breadcrumb path $crumb = explode("/", PATH); if (PATH != 'root' && realpath(PATH)) { print "...

How can I improve on this. (Breadcrumbs class)

Hi, I have recently created a breadcrumbs class that fits in with our in-house CMS and it works as I intend but I have a nagging feeling it could have been done better. I was thinking of doing an array_pop close to the end of the construct but I decided to go with an IF statement instead, what do you guys think? (Oh also $_REQUEST['sec...

zend framework breadcrumb

Is there way how to get breadcrumbs for specific page by it´s id? My attempt follows but i get only page label. No breadcrumb path. $view = Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer')->view; $page = $view->navigation ()->findBy ('id', 'menuCategory29'); // work fine page label is displayed echo $page->getTitle(...