其中一位客户与他联系,指出他无法为其帐户指定不同的结算和送货地址。当他改变一个地址时,另一个地址也会自动改变。
我登录Magento管理控制台尝试自己分开地址,但我找不到办法。
任何想法!!!!
答案 0 :(得分:7)
我无法解决问题所以我最终只是向用户显示了一条消息。它只在地址簿中有一个地址时显示消息。
要使用默认的Magento主题实现此修复,请将以下代码插入app / design / frontend / your-interface / your-theme / template / customer / address / edit.phtml
<?php if($this->isDefaultBilling() && $this->isDefaultShipping()): ?>
<ul>
<li class="error-msg">Editing this address will update both your billing and shipping address. If you want to add an entirely new billing or shipping address click <a href="<?php echo $this->getBaseUrl();?>customer/address/new/" title="Create New Billing or Shipping Address">here</a>.</li>
</ul>
<?php endif; ?>
它正在运作..
答案 1 :(得分:0)
这是可能的,但处理确实不是很好。如果您当前拥有相同的帐单和送货地址并编辑其中一个,则确实会更新这两个地址。
如果您只想编辑一个地址,则必须添加新地址。如果您这样做,则可以将此新地址配置为默认的结算/送货地址。