Код для сортировки продуктов по news_from_date и news_to_date : - *
$todayDate = Mage::app()->getLocale()->date()->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
$productCollection->addAttributeToFilter('news_from_date', array('date' => true, 'to' => $todayDate))
->addAttributeToFilter('news_to_date', array('or'=> array(
0 => array('date' => true, 'from' => $todayDate),
1 => array('is' => new Zend_Db_Expr('null')))
), 'left')
->addAttributeToSort('news_from_date', 'desc');
Вы можете просмотреть новый код продукта в классе Mage_Catalog_Block_Product_New
(приложение / код / ядро / Маг / Каталог / Блок / Продукт / New.php)
Надеюсь, это поможет.