Magento Admin Add/Edit Review -> removing Summary

2019-03-04 17:53发布

问题:

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!