Hi
Open modulesmod_janews2helper.php file, find following code:
function getAllCategoriesBySection($sectionid) {
$db = & JFactory::getDBO ();
$query = "SELECT id,title FROM #__categories WHERE section = $sectionid;";
$db->setQuery ( $query );
$cats = $db->loadObjectList ();
return $cats;
}
and change to:
function getAllCategoriesBySection($sectionid) {
$db = & JFactory::getDBO ();
$query = "SELECT id,title FROM #__categories WHERE section = $sectionid;";
$query .= " order by ordering";
$db->setQuery ( $query );
$cats = $db->loadObjectList ();
return $cats;
}