Problem:
The Orders2CSV in not showing up in the massaction dropdown menu on order grid.
Solution:
If you are using Orders2CSV PRO - just upgrade to newest version. Below solution is only working for free version.
Most common reason for this error, is that another extension is also overwriting the "Mage_Adminhtml_Block_Sales_
Example:
Other module code add into Orders2CSV _prepareMassaction function:
protected function _prepareMassaction() { parent::_prepareMassaction(); if (Mage::getStoreConfig(self::XPATH_CONFIG_SETTINGS_IS_ACTIVE)) { $this->getMassactionBlock()->addItem('orders2csv', array( 'label'=> Mage::helper('sales')->__('Orders2CSV'), 'url' => $this->getUrl('*/sales_order_orders2csv/makecsv'), )); // Below is the other Extension code $this->getMassactionBlock()->addItem('delete_order', array( 'label'=> Mage::helper('sales')->__('Delete order'), 'url' => $this->getUrl('*/sales_order/deleteorder'), )); } }
Related product:
Orders2CSV PRO extension