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

前端 未结 1 932
故里飘歌
故里飘歌 2021-01-27 13:14

How can i remove mandatory required for the Summary of Review Field in the Admin panel?

相关标签:
1条回答
  • 2021-01-27 14:13

    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!

    0 讨论(0)
提交回复
热议问题