breadcrumbs
Breadcrumb Issue using Zen theme
I could use a little advice on breadcrumbs. I am currently running Drupal 6 and using the CTI Flex theme, a Zen sub-theme. Discovered an issue with the breadcrumbs where a link to "content" shows up in all the breadcrumbs. When clicked it takes you to a "Welcome to your new Drupal Website!" page. (see attached images) It states "This message will disappear once you have promoted a post to the front page." I have done this but still get the content breadcrumb. Any suggestions on what I need to do to remove it?
Thanks
Jeff
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 に入れてみましたが、思った通りには出来ません。やはりノードか、ページで振り分けるのでしょうか?
宜しくお願い致します。
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.
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',
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...



