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.
再会。
我想在magento前端的相关产品块中添加数量输入字段。(例如产品查看页面。)
也许有人知道我该怎么做?
谢谢 。
在此文件路径中添加以下代码
'app/code/core/Mage/Adminhtml/Block/Catalog/Product/Edit/Tab/Related.php'。
$this->addColumn('qty', array( 'header' => Mage::helper('catalog')->__('Qty'), 'index' => 'qty' ));
里面
protected function _prepareColumns() { }
这个功能。
我希望它对你有帮助。