Magento - 单页结账中运送步骤的内部网址是什么?

发布于 2024-10-21 23:08:22 字数 584 浏览 3 评论 0原文

我正在使用观察者来检查客户在一页结帐期间提供的运输信息。通过观察事件 checkout_controller_onepage_save_shipping_method,我想将客户重定向回运输步骤以重新输入他们的信息。

在此页面上进行对话后,在 Magento 中阻止事件观察者结帐的正确方法是什么?,我已设置好所有内容,但我不想将它们重定向到购物车,而只是将其重定向到运输步骤。

Mage::app()->getResponse()->setRedirect(Mage::getUrl('什么/去/这里'));

我可以让代码只是刷新页面吗? Mage::app()->getResponse()->setRedirect(Mage::getUrl('checkout/onepage')); 不起作用。

谢谢!

I am using an observer to check the shipping information provided by the customer during onepage checkout. By observing the event checkout_controller_onepage_save_shipping_method I want to redirect the customer back to the shipping step to re-enter their information.

Following the conversation on this page, What is the correct way to stop a checkout from an event observer in Magento?, I have everything set up, but I do not want to redirect them to cart, just the shipping step.

Mage::app()->getResponse()->setRedirect(Mage::getUrl('what/goes/here'));

Can I make the code simply refresh the page?
Mage::app()->getResponse()->setRedirect(Mage::getUrl('checkout/onepage')); does not work.

Thanks!

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

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

发布评论

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

评论(2

她说她爱他 2024-10-28 23:08:22

url = 结账/onepage/shipping_method

url = checkout/onepage/shipping_method

冷情 2024-10-28 23:08:22
if ($backUrl = $this->_getRefererUrl()) {
    $this->getResponse()->setRedirect($backUrl);
}
if ($backUrl = $this->_getRefererUrl()) {
    $this->getResponse()->setRedirect($backUrl);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文