breadcrumbs

We encourage users to post events happening in the community to the community events group on https://www.drupal.org.
jessSchn's picture

RP Forum (Drupal 6)

I've implemented RP Forums (http://www.richardpeacock.com/blog/2010/10/rp-forum-drupal-6-module) on a Drupal 6 website. It has many of the features that are required for this project, but I noticed the navigation on it is terrible. Once I navigate from the main Forum page, there isn't a link to easily get back to the main Forum page.

So I was looking to setup breadcrumbs on this Forum, which should solve the problem. However, I'm not sure how to get the breadcrumb feature on here.

Any ideas or suggestions?

Read more
Hanscraft's picture

Turning Taxonomy Terms into Hierarchical Breadcrumbs

We have a complicated taxonomy with lots of parent terms with children terms underneath. Our pages are generated by a behind the scenes call to that taxonomy term. So for instance, if you're looking at the Teen section, all the posts shown have the tag "Teen" on them. A post can be set to multiple taxonomy terms at the current time.

We'd like to develop breadcrumbs so that if you're looking at an item which is tagged Teen as the parent term and Movies as the child term, the breadcrumb would show something like Home > Teen > Movies > Movie Title

Read more
donquixote's picture

Router, tabs and breadcrumbs.

A follow-up to chx' Menu needs to be torn apart.
(this linked thing is a wiki page, so no discussion possible over there)

What chx said:

1. Router system with access control.
1. Tabs with access control.
1. Menu links

These three have little to do in common and yet we keep them together.

Chx actually said more than this, but for now all I want is a problem description.

Changes that I hope we can agree on:

Read more
reibian's picture

menu, breadcrumbs, links, page and node template... how?

また、クダラナイ質問かも知れません。オックスファムのサイト、Drupal 5.x で運営してるみたいですが、 http://oxfam.org のメニューと残パンの作り方に感心しています。例えば、"About Us" をクリックするとそのメニューにバックグランドのイメージを変える事によりそれを焦点とし、残パンもそれに従っている。その "About Us" の中の真中のリンクにクリックしても、メニューの焦点は、変わらず、また残パンも一致している。これは、node template を使って、それとも page template で出来る事でしょうか?
また、6.x で残パンが思うようにならないので、検索し下記のコードを template.php に入れてみましたが、思った通りには出来ません。やはりノードか、ページで振り分けるのでしょうか?

宜しくお願い致します。

Read more
dunkoh's picture

Precedence of Audience in posts

I hope this post brings to the forefront a gripe I have about breadcrumbs and the precedence of the "Audience" selection on discussions in groups.drupal.org

When an event is posted to our group for our monthly meetup, we usually post it to the groups in adjacent cities/states.

The issue: the breadcrumbs and email subjects for notifications take on the first "audience" in the list - so our events/posts appear as though they are within the "Central Ohio" group instead of Cincinnati/SW Ohio group, since Central Ohio comes first alphabetically.

Read more
kirilius's picture

Maintaining the breadcrumb trail in a view?

Here is the situation:

I have a node type called Destination. I have created a view called Destination Pictures, which shows all pictures from a given destination.
Using the following code I have added this view as a new tab under the main Destination node type:

<?php
function dest_pics_menu($may_cache) {

$items = array();

if (arg(0) == 'node' && is_numeric(arg(1))) {
$node = node_load(arg(1));
if ($node->nid && $node->type=="destination") {
$items[]= array(
'path' => 'node/'. arg(1) .'/dest_pics',

Read more
greg@beargroup.com's picture

Views: Maintaining Breadcrumb trails & active Menus once in Nodes

Hi - setting up a large ecommerce site with Views handling the catalog pages (about 12,000 skus). Last item remaining... I need to maintain breadcrumb/menu active state when users click from a view page to a node. Can modify these in the product.module, if I can get the referring view - this is what I'm trying at the moment (in Drupal 5.2):

First Attempt:
<?php
$last_page = substr(referer_uri(), 29); //trimming off the domain, whats left is the views path

if ( preg_match("/store/", $last_page) ) { //match if coming from a view page, they all start with store...

Read more
Subscribe with RSS Syndicate content