Magento 中的送货地址

发布于 2024-10-09 13:21:14 字数 143 浏览 1 评论 0原文

我在 Magento 中创建了一个网站。当我下订单时,插入帐单信息时有两个选项。
“运送到此地址”
“运送到不同的地址”
在那里,默认选择第二种方法。我想默认选择第一种方法。 有什么方法可以做到这一点还是我必须在代码中进行调整。
请指导我。

I have created a website in Magento. When I place an order there are two options when inserting billing information.
"Ship to this address"
"Ship to different address"
There, the second method is selected by default. I want to select the first method by default.
Is there any method for this or do I have to make the adjustment in code.
Please guide me.

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

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

发布评论

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

评论(2

一梦等七年七年为一梦 2024-10-16 13:21:14

在文件 template/checkout/onepage/billing.phtml 中,您可以通过以下方式强制执行:

<?php $this->getQuote()->getShippingAddress()->setSameAsBilling(true) ?>

In the file template/checkout/onepage/billing.phtml you can force it with:

<?php $this->getQuote()->getShippingAddress()->setSameAsBilling(true) ?>
蓝礼 2024-10-16 13:21:14

没有默认方法可以执行此操作。您必须对代码进行编辑才能实现此目的。如果您深入研究结帐过程的运输方式块和模板文件,您应该能够添加一个覆盖,该覆盖将默认为您选择的任何选项。

There are no default methods for doing this. You have to make an edit to the code to make this happen. If you dig into the shipping method block and template files for the checkout process, you should be able to put in an override that will default to whatever option you select.

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