When I click on the category name, it opens a category news page. Ok
But the title is displaying all path like section name / category name.
{section_category_name}. I want to display only that category name !
In
components/com_news_portal/news_portal.php file
search for this code:
$catname = $cat[0]['section_name']."/".$cat[0]['category
_name'];
and change like that:
$catname = $cat[0]['category_name'];
section name will be taken out.