Hi.
assuming you use the "semantic" template, you can remove the "New" in the file "templates/semantic/html/gallery.php" around line 35 by removing this:
<span class='rsg2-galleryList-newImages'>
<sup><?php if( $this->gallery->hasNewImages() ) echo _RSGALLERY_NEW; ?></sup>
</span>
the length of time is 7 days and not changeable in the control panel.
if you want to change it, modify "includes/gallery.class.php" around line 108:
function hasNewImages(){
$database =& JFactory::getDBO();
$lastweek = mktime (0, 0, 0, date("m"), date("d") - {put the days you want in here}, date("Y"));
$lastweek = date("Y-m-d H:m:s",$lastweek);
$database->setQuery("SELECT * FROM #__rsgallery2_files WHERE date >= '$lastweek' AND gallery_id = '{$this->id}' AND published = '1'");
$database->query();
return (bool) $database->getNumRows();
}
john