Jump to content

Breadcrumb


Recommended Posts

Bonjour, un souci que je ne comprend pas !

Je vous le montre pour que ça soit plus clair

 

Mon Breadcrumb réécrit la catégorie à la fin du fil d’Ariane

Avez vos une idée sur la raison de cet double affichage ?

 

Merci pour vos suggestions

 

Version 1.5.3.1

post-470690-0-75891900-1361439523_thumb.jpg

Link to comment
Share on other sites

  • 9 months later...

themes/urtheme/breadcrumb.tpl and delete all content :)

 

if you want to change class you need edit classess/Tools.php and function getPath (line 952).

 

For me i need edit this frament:

foreach ($categories as $category)
				{
					$full_path .=
					(($n < $n_categories || $link_on_the_item) ? '<li><a href="'.Tools::safeOutput($context->link->getCategoryLink((int)$category['id_category'], $category['link_rewrite'])).'" title="'.htmlentities($category['name'], ENT_NOQUOTES, 'UTF-8').'">' : '<li><span class="current">').
					htmlentities($category['name'], ENT_NOQUOTES, 'UTF-8').
					(($n < $n_categories || $link_on_the_item) ? '</a></li>' : '</span></li>').
					(($n++ != $n_categories || !empty($path)) ? $pipe : '');
				}

And now i have it:

Link to comment
Share on other sites

 

themes/urtheme/breadcrumb.tpl and delete all content :)

 

 

I'm not so sure I would do that or recommend doing that. The proper way to remove the breadcrumbs is to simply remove (or comment out) the following from your theme

{include file="$tpl_dir./breadcrumb.tpl"}

This will ensure that no white space is left by deleting everything in breadcrumb.tpl.

 

Hope this helps!

 

Marty Shue

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...