hi.i have this situation,i want to add class to breadcrumbs by adding field in the addbreadcrumbs function.is it possible to do that?so i can do like this :
$this->document->addBreadcrumb( array (
'href' => $this->html->getSEOURL('product/category','&path=' . $path, '&encode'),
'text' => $category_info['name'],
'class' => 'some string',
'separator' => $this->language->get('text_separator')
));
So i access the class value on the breadcrumbs.tpl.
Thanks a lot.
Yes, you should be able to do this. See below what this class does.
public function addBreadcrumb($breadcrumb_item = array()) {
if ($breadcrumb_item[ "href" ]) {
$this->breadcrumbs[ ] = $breadcrumb_item;
}
}
Thanks a lot,i'll try it.