Thursday, April 5, 2012

Store view is not listing in admin magento: SOLVED

In magento 1.6.X there may be a that multiple store listing not comes in admin end.
i comes to accross this issue and find out the solution
go to file ...app\code\core\Mage\Adminhtml\Block\Widget\Grid.php


and replace this code



public function getRowUrl($item)
    {
        $res = parent::getRowUrl($item);
        return ($res ? $res : '#');
    }

with



public function getRowUrl($item)
    {
        $res = parent::getUrl($item);
        return ($res ? $res : '#');
    }


and enjoy!!!!!!!

No comments:

Post a Comment