i have created a view using plugin search type. plugin search is a facet api search. i need to show bread crumbs in that views. still now breadcrumbs is not visible to views.

Comments

Charliedj’s picture

Lets say we have a page view with structure
---Team (menu item)
|
|---Featured 1 (tab-default)
|
|---Featured 2 (tab)
|
|---Featured 3 (tab)

Now instead of having a breadcrumb like "Home ›" OR "Home › Team ›" we need something like "Home › Our Team › Featured 1" for default tab. To accomplish this we need to add following php code in header section of view page with php filter enabled.

global $base_url;
$breadcrumb[] = l('Home', null);
$breadcrumb[] .= l('Our Team', 'team');
$breadcrumb[] .= l(drupal_get_title(), $base_url.$_SERVER['REQUEST_URI']);
drupal_set_breadcrumb($breadcrumb);
?>

Thanks , :)
Now giveaway on my blog!
http://www.thecheesyanimation.com/Exterior-Design-&-Rendering.html