Has anyone managed to use an image for the breadcrumb separator? I realize it would probably require hacking the module or a template somewhere, but I'm not sure where this would need to be done.

Comments

weedoo’s picture

You need to override the theme_breadcrumb() function like that in your template.php file

function THEMENAMEHERE_breadcrumb($breadcrumb) {
  if (!empty($breadcrumb)) {
    return '<div class="breadcrumb">'. implode(' » ', $breadcrumb) .'</div>';
  }
}

Where you see the '»' sign you can put something like 'Only local images are allowed.'

Refer to this

Hope this helps you. Note, you can override all theme function the same way

MGN’s picture

Status: Active » Closed (works as designed)

Agree more or less with weedoo - this isn't a taxonomy breadcrumb issue, unless the separator was somehow tied to the taxonomy term?