Magento Admin Add/Edit Review -> removing Summary of Review Field required validation

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-09 03:51:22

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!