do you plan on adding Breadcrumbs?

thanks

Comments

danpros’s picture

Hi Tweaker,

I think I already add that

	<?php print $breadcrumb; ?>
</div> <!-- end menu wrapper -->

Clear the Drupal cache if you do not see this.

Dan

green monkey’s picture

It is sort of working

It seems to be working only at certain depths

not seeing - when going into modules
Home » Administer » Site building

danpros’s picture

Status: Active » Fixed

That is Drupal core behavior, previously I want to override the breadcrumb via php template but since there is a module for this so I remove that before publish it :)

function phptemplate_breadcrumb($breadcrumb) {
  if (!empty($breadcrumb)) {
      $breadcrumb[] = drupal_get_title();
        array_shift($breadcrumb);
       return '<span>'.t('You are here: ').'</span>'.'<a href="'.base_path().'">Home</a>'. t(' > ') . implode(' > ', $breadcrumb);
	}
 }

Add that on template.php and clear the cache.

Dan

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.