Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近从 1.3 升级到 Magento 1.6.1.0 并且刚刚注意到订单屏幕中不再有全选功能只需选择可见,有谁知道是否有设置可以打开和关闭它我看过到处都找不到。
首先,magento 的最新稳定版本已经在 1.7 中,所以请升级到那个版本,因为它有几个重要的错误/安全修复
对于全选选项,您必须在模块或本地代码中覆盖 Mage_Adminhtml_Block_Sales_Order_Grid 类。
在 _prepareMassaction() 方法中有一行:
$this->getMassactionBlock()->setUseSelectAll(false);
将此设置为true,您就可以全选。