添加额外的文本字段到 magento review
我正在尝试向 magento 的产品评论添加一个额外的文本字段。看来这可能需要存在于“review_detail”表中,但除了在数据库中创建列并将字段添加到模板文件之外,我不确定如何添加此字段以便将其集成到审查制度。谁能让我朝着正确的方向开始?
I'm trying to add an additional text field to magento's product review. It looks like maybe this would need to live in the 'review_detail' table, but beyond creating the column in the db and adding the field to the template file, I'm not sure how to add this field so that it will be integrated into the review system. Can anyone get me started in the right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在评论表单中添加了 2 个额外字段,只需转到 frontend\base\default\template\review/form.phtml 添加两个字段作为其他文本字段。
现在转到 app\code\core\Mage\Review\Model\Mysql4\Review.php
现在在数据库的 review_detail 表中添加电子邮件、fname 也转到 app\code\core\Mage\Adminhtml\Block\Review\Edit \Form.php 还添加 :
之前,
我希望现在您可以在审核表单中添加额外的字段。
谢谢
I have added 2 extra field in review form just go to the frontend\base\default\template\review/form.phtml add two field as other text field.
Now go to app\code\core\Mage\Review\Model\Mysql4\Review.php
Now add email,fname in the review_detail table in the database also go to app\code\core\Mage\Adminhtml\Block\Review\Edit\Form.php also add :
before to
I hope now you can add extra fields in review form.
Thanks
对于“无法发布评论”错误,您需要在 app\code\core\Mage\Review\controllers\ProductController.php 的 _cropReviewData 函数中添加这 2 个新字段,
希望这会有所帮助。
For the "Unable to post the review" error, you need to add this 2 new fields in the function _cropReviewData in app\code\core\Mage\Review\controllers\ProductController.php
I hope this will help.