Showing posts with label Display recently added products first in products listing magento. Show all posts
Showing posts with label Display recently added products first in products listing magento. Show all posts

Tuesday, 24 February 2015

Display recently added products first in magento


Display recently added products first in magento

Kindly Open app/code/core/Mage/Catalog/Block/Product/List/Toolbar.php and Find the below code at around line 232

if ($this->getCurrentOrder()) {
  $this->_collection->setOrder($this->getCurrentOrder(), $this->getCurrentDirection());
}

Now Replace the below code and Enjoy chandresh rana's Coding

if ($this->getCurrentOrder()) {
  if(($this->getCurrentOrder())=='position'){
      $this->_collection->setOrder('entity_id','desc');
  }
  else {
   $this->_collection->setOrder($this->getCurrentOrder(),$this->getCurrentDirection());
  }
}