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 产品评论表单中删除标题文本字段?
这可能是一些简单的事情,比如使标题不需要并隐藏它认为 css,这可能吗?
您可以使用 CSS 隐藏或禁用所需,如下所示:
复制
/app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php
至
/app/code/local/Mage/Adminhtml/Block/Review/Edit/Form.php
并更改(第 125 或 131 行)
'required' => true,
'required' => false,
并刷新缓存!