问题
How can i remove mandatory required for the Summary of Review Field in the Admin panel?
回答1:
copy
/app/code/core/Mage/Adminhtml/Block/Review/Edit/Form.php
to
/app/code/local/Mage/Adminhtml/Block/Review/Edit/Form.php
and change (line 125 or 131)
'required' => true,
to
'required' => false,
and refresh the cache!
来源:https://stackoverflow.com/questions/13595149/magento-admin-add-edit-review-removing-summary-of-review-field-required-valid