0

我在联系表格和评论表格上使用 Fontis recaptcha。直到最近它才像一个魅力。从 1.8 升级到 1.8.1 后,contact-form / captcha 工作正常,但 review-form / captcha 不能正常工作。填写评论字段、验证码和发送看起来不错。但是我没有收到评论被接受并且评论从未出现在后端的消息。所以它看起来像是在太空中迷失了。

someboyd 可以帮助我,因为评论正在导入客户和我

4

1 回答 1

1

我们遇到了同样的问题。如果您使用的是 Fontis Rc V2.5 您需要修改 2 个文件...我已经让 Fontis 知道,所以希望他们会更新扩展。

1)更新recaptcha.xml(设计布局文件),更改:从

<review_product_list> < block name="product.review.form"> <block type="core/template" name="recaptcha.box" as="recaptcha_box" template="fontis/recaptcha/recaptcha.phtml"/> < />

收件人: <review_product_list> < reference name="product.review.form"> <block type="core/template" name="recaptcha.box" as="recaptcha_box" template="fontis/recaptcha/recaptcha.phtml"/ ></参考>

2) 更新位于 fontis 模板设计文件中的 form.phtml 并在 <form action="...> 下添加简单地添加 < ?php echo $this->getBlockHtml('formkey'); ? >

3)刷新缓存,所有产品都应该为产品评论工作。(对我们来说很好)

于 2014-03-05T11:06:52.620 回答