It looks like you're new here. If you want to get involved, click one of these buttons!
{fuel_nav(array(render_type='breadcrumb'))}
<ul>
<li><a href="home">Home</a> <span class="arrow"> > </span> </li>
<li>our services</li>
</ul>
<a href="home">Home</a>
/
our services
Comments
{fuel_nav(array(render_type='breadcrumb',item_tag='',container_tag='',arrow_class=''))} ///results <a href="home">Home</a> <span class=""> > </span> our services
Now i need to remove the span as well.
$breadcrumbs = fuel_nav( array( 'render_type' => 'array', 'parent' => '[first bread crumb key]' ) )
This will return the array itself starting from the parent key that you choose, from which you could build your own breadcrumbs.<ul class="inline"> {loop $breadcrumbs} <li><a href="{$location}"></a></li> <li> / </li> {/loop} </ul>
there must be a way to customize this. I dont mind hardcoding this.
TIP: I would suggest removing that and anyone who needs a span can use delimiter parameter to add a span or whatever.
You may have a better way of doing this but for my own use I have updated Menu.php line# 616 and #634
//if ($num >= 0) $str .= ' <span class="'.$this->arrow_class.'">'.$this->delimiter.'</span> ';
updated toif ($num >= 0) $str .= ' '.$this->delimiter.' ';
And
//$str .= ' <span class="'.$this->arrow_class.'">'.$this->delimiter.'</span> ';
updated to$str .= ' '.$this->delimiter.' ';