Hi,
If you look at the debug data, you can first see this:
take.ms/btxtf
All processing time of the page is taken by the VKV shop module.
That module is a 2 levels category listing module.
So two possible solutions without getting deeper into searching:
- remove the module, and instead create a menu with one menu item for each category and use a menu item module to display that menu's items instead. The look would be the same, it would be a bit more management, but the solution isn't complex.
- try using something like the skyline accordion for HikaShop:
extensions.joomla.org/extension/skyline-...cordion-for-hikashop
It supports even more levels of display and as the data is loaded dynamically in Ajax, it shouldn't take time to display.
Looking deeper into it, you can see that the problem happens after the query 30:
take.ms/wdcAG
And that query is quite troublesome as it loads all the categories of each category of the listing, regardless of the level.
The comes from the "sub element filter" setting of the module, which is apparently set to "all sub elements".
Change it to "direct sub elements" and that should help avoid the problem.