Mega Menu Prestashop

941 Views Asked by At

I've tried to look for a solution for this but can't seem to find it anywhere.

I'm looking to stylise the drop down for the sub > sub category. So the hierarchy would be -

Root > sub category > sub category > sub category

At the moment it works up until Root > sub category > sub category but beyond that it just lists the sub category under that without recognising that there's a category head above it.

Many thanks!

1

There are 1 best solutions below

1
On

Can it be because of this?

    private function getCMSMenuItems($parent, $depth = 1, $id_lang = false)
{
    $id_lang = $id_lang ? (int)$id_lang : (int)Context::getContext()->language->id;

    if ($depth > 3)
        return;

In file modules/blocktopmenu/blocktopmenu.php

My 2 cents, pascal