我已使用下面的代码在产品详情页面的标签中显示“告诉朋友”表单
<block type="catalog/product_view_tabs" name="product.info.tabs" as="info_tabs" template="catalog/product/view/tabs.phtml" >
<action method="addTab" translate="title" module="catalog">
<alias>send-friend</alias>
<title>Send Friends</title>
<block>sendfriend/send</block>
<template>sendfriend/send.phtml</template>
</action>
</block>
我已启用允许来宾从后端获得“是”。但在提交表单时,它会重定向到404页面。发送电子邮件的默认方式在选项卡外部工作正常但在选项卡内部不起作用。我错过了什么吗?
答案 0 :(得分:1)
如果它将您发送到正确的网址,无论您是否来自标签页,您应该期望它以相同的方式工作。
我刚刚通过
解决了我的404错误我收到的网址是http://www.example.com/sendfriend/product/send/id/14530/
我的猜测是,在某个地方你的模板中存在问题。