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'),
),
);
}