Magento“推荐给朋友”重定向到标签内的404页面

时间:2012-07-18 13:36:32

标签: php magento friend tell

我已使用下面的代码在产品详情页面的标签中显示“告诉朋友”表单

<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页面。发送电子邮件的默认方式在选项卡外部工作正常但在选项卡内部不起作用。我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

如果它将您发送到正确的网址,无论您是否来自标签页,您应该期望它以相同的方式工作。

我刚刚通过

解决了我的404错误
  • 在配置内启用发送给朋友&gt;系统&gt;高级
  • 在配置&gt;内设置“已启用”,“默认模板”,“允许访客”,“Cookie(不安全)”目录&gt;发送电子邮件给朋友

我收到的网址是http://www.example.com/sendfriend/product/send/id/14530/

我的猜测是,在某个地方你的模板中存在问题。