Quote Originally Posted by 1kell View Post
I managed to fix it with the "li li {float:none;} suggestion. Its looking good now aside from one MAJOR error.

I don't know what is happening with my cPath, ever since I installed the Cat Tabs menu up the top, and modified it using the Add On to turn it into a dropdown menu, the cPath is wrong when you navigate around.

If you have a look and start clicking back and forth between products & categories,, the cPath (in the address bar) doesn't completely refresh - it adds paths on.

I have had to turn breadcrumbs off as it is causing a similar problem, where the breadcrumbs end up like this:

Cat A - Cat D - Cat C - Product 1

Showing the history of clicks, rather than where you are.

This is a crappy error and has only come in since updating the Cat Tabs. Does anyone know what would be causing this? It creates navigation problems when trying to go back to subcategories. If you choose a sub cat with more subcats underneath and click on one, its impossible to go back to the first subcat even when choosing it from the dropdown.

site is located at mi ra cle baby . co . nz/estore. If I can fix that it would be perfect!
That is correct behaviour- Breadcrumbs is designed to take the user back through the path that they navigated to get to the current page. This mod uses the same function as the Zencart breadcrumbs- that's is why it works the same way.

It you just want to put a straight category reference, replace the following lines (67/68 and 81/82):

PHP Code:
$cPath_new=zen_get_path($subcategories_tab->fields['categories_id']);
$cPath_new=str_replace('=0_''='$cPath_new); 
with

PHP Code:
$cPath_new="cPath=".$subcategories_tab->fields['categories_id'];