无法在xcart的前端显示类别

I am using custom skin in xcart but I am unable to display categories and subcategories at frontend. But If I switch to default theme then It displays all the categories at frontend.

Where Iam doing wrong? I had googled it and also chat on helpdesk but no solution.

The tips related to categories menu

1)disable the Flyout_Menus module

2)or disable ajax menu and delete var/cache dir

modules/Flyout_Menus/config.php
-define('XC_FLYOUT_MENU_TYPE', 'ajax');//Recommended value is 'ajax'
+define('XC_FLYOUT_MENU_TYPE', 'html');//Recommended value is 'ajax'

3)or remove skin/YOUR_SKIN_DIR/customer/categories.tpl file

If your use X-cart 5 then categories are displayed by "XLite\View\TopCategories" class.

It is added to "sidebar.single" and "sidebar.first" lists.

If you skin does not display sidebars, then you should add this class to another list. For example, you can try to move class to another list by using the "moveClassesInLists" method:

namespace XLite\Module\Dev\MyModule;

abstract class Main extends \XLite\Module\AModuleSkin
{
    ...

    protected static function moveClassesInLists()
    {
        return array(
            'XLite\View\TopCategories' => array(
                array('sidebar.single', 'customer'),
                array('my_list', 10, 'customer'),
            ),
        );
    }