Hello support team,
I would like to show only first subcategory and no second subcategories at this point
Only first subcategory Name in Module
thanks
My problem is, I do not want to show a third subcategory in the headline. As in the pictures
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.