It is possible.
Open helper.php file in modulesmod_janews_fp folder, at about line 247, find following script:
[PHP]$query = “SELECT a.*,”
. “n CASE WHEN CHAR_LENGTH(a.alias) THEN CONCAT_WS(‘:’, a.id, a.alias) ELSE a.id END as slug,”
. “n CASE WHEN CHAR_LENGTH(cc.alias) THEN CONCAT_WS(‘:’, cc.id, cc.alias) ELSE cc.id END as catslug”
. “n FROM #__content AS a”
. “n INNER JOIN #__content_frontpage AS f ON f.content_id = a.id”
. “n INNER JOIN #__categories AS cc ON cc.id = a.catid”
. “n WHERE ( a.state = 1 AND a.sectionid > 0 ”
. ‘ AND (a.publish_up = ‘.$db->Quote($nullDate).’ OR a.publish_up <= ‘.$db->Quote($now).’ ) ‘
. ‘ AND (a.publish_down = ‘.$db->Quote($nullDate).’ OR a.publish_down >= ‘.$db->Quote($now).’ )’
. ($noauth ? ‘ AND a.access <= ‘ .(int) $aid. ‘ AND cc.access <= ‘ .(int) $aid : ”)
. “n AND cc.published = 1 )”
. “n ORDER BY f.ordering ASC”;[/PHP]
and change to your requirement.
I am sorry for not being of much help in this case.