Not quite sure if this is a bug or not.
Basically, go to the main Showcase section. Hover over a category. If it has a Category Description, it will show that inside the tooltip.
Now, click one of the categories to navigate into it.
Sidebar looks the same, but hover over the same category. No tooltip.
It's not being assigned a class
Basically, go to the main Showcase section. Hover over a category. If it has a Category Description, it will show that inside the tooltip.
Now, click one of the categories to navigate into it.
Sidebar looks the same, but hover over the same category. No tooltip.
It's not being assigned a class
HTML:
<a href="garage-category/astra-h.2/">Astra H</a>
HTML:
<a href="garage-category/astra-h.2/" class="_depth0 Tooltip" alt="Vauxhall Astra H">Astra H</a>
HTML:
<xen:foreach loop="$categories" value="$cat">
<dl>
<dt><a href="{xen:link showcase-category, $cat}" class="_depth{$cat.depth} {xen:if '{$cat.category_description}', 'Tooltip'}" alt="{$cat.category_description}" title="{$cat.category_description}" >{$cat.category_name}</a></dt>
<dd>{xen:if '{$cat.item_count}', '{$cat.item_count}', '0'}</dd>
</dl>
</xen:foreach>
Upvote
0