meisterix
I updated the file: /templates/ja_focus/helper.php
/*
$sql = '
SELECT DISTINCT sub.*
FROM #__categories AS sub
INNER JOIN #__categories AS this ON sub.lft > this.lft AND sub.rgt < this.rgt
WHERE this.id IN ('.$IN.')';
*/
$sql = '
SELECT DISTINCT sub.*
FROM `#__categories` AS sub
WHERE `sub`.parent_id IN ('.$IN.')';
It shows only first sub-categories now.