Seems no one answered this thread? (…many unanswered threads on this website)
A solution to remove the header in janewsflash (only if you won’t want to use any headings for this module) – is to go to the module and make a small change to the php code.
so: –
1. open yoursitedirectory/modules/mod_janewsflash/ja_newsflash/janewsflashloader.php
2. find this – around line 255 and remove a.title (hopefully underlined in this post)
// query to determine article count
$query = “SELECT a.id, a.introtext, a.fulltext , a.images, a.attribs, a.title, a.state”
.”n FROM #__content AS a”
.”n INNER JOIN #__categories AS cc ON cc.id = a.catid”
.”n INNER JOIN #__sections AS s ON s.id = a.sectionid”
.”n WHERE a.state = 1″
. ( $noauth ? “n AND a.access <= ” . (int) $my->gid . ” AND cc.access <= ” . (int) $my->gid . ” AND s.access <= ” . (int) $my->gid : ” )
.”n AND (a.publish_up = ” . $database->Quote( $nullDate ) . ” OR a.publish_up <= ” . $database->Quote( $now ) . ” ) “
.”n AND (a.publish_down = ” . $database->Quote( $nullDate ) . ” OR a.publish_down >= ” . $database->Quote( $now ) . ” )”
.”n AND a.catid = ” . (int) $catid
.”n AND cc.published = 1″
.”n AND s.published = 1″
.”n ORDER BY a.ordering”
;