magento 将会话消息添加到 cms 页面

发布于 2024-11-01 05:38:41 字数 495 浏览 0 评论 0原文

在我的 Magento 网站中,我有一个自定义注册表单和一个 CMS 感谢页面,用户在完成表单后会被重定向到该页面。有没有办法将会话消息包含在 CMS 页面中?

我尝试过使用 布局更新 XML 字段,但我一无所获

这是我到目前为止所尝试的,但没有运气。

<block type="core/messages" name="global_messages" as="gloabl_messages" />
<block type="core/messages"  name="messages" as="global_messages" />

{{block type="core/messages" name="global_messages" as="gloabl_messages" }}
{{block type="core/messages"  name="messages" as="global_messages" }}

In my Magento site I have a custom signup form and a CMS thank-you page that the user is redirected to after they complete the form. Is there a way to include the session messages in the CMS page?

I've tried playing w/ the Layout Update XML field, but I'm not getting anywhere

Here is what I've tried so far, all w/ no luck.

<block type="core/messages" name="global_messages" as="gloabl_messages" />
<block type="core/messages"  name="messages" as="global_messages" />

{{block type="core/messages" name="global_messages" as="gloabl_messages" }}
{{block type="core/messages"  name="messages" as="global_messages" }}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

意中人 2024-11-08 05:38:41

尝试:

<block type="core/messages" name="global_messages" as="global_messages"/>
<block type="core/messages" name="messages" as="messages"/>

这应该显示核心/会话类中的所有消息。确保在核心会话上设置消息。它们可能是在客户会话中设置的。 Mage::getSingleton('core/session') 获取核心会话。 Mage::getSingleton('customer/session') 获取客户会话等

Try:

<block type="core/messages" name="global_messages" as="global_messages"/>
<block type="core/messages" name="messages" as="messages"/>

That should display any messages in the core/session class. Make sure the messages are being set on the core session. It is possible they are being set on the customer session. Mage::getSingleton('core/session') gets the core session. Mage::getSingleton('customer/session') gets the customer session, etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文