Questions tagged «customer-address»

2
如何在客户地址编辑表单中添加客户自定义属性?
我添加了一个客户自定义属性作为customer_address类型,它可以在admin,onepagecheckout以及送货和帐单地址中正常运行。 我在模块基本目录中创建了: my_namespace/my_module/etc/module.xml和registration.php composer.json文件。 my_namespace / my_module / Setup / InstallData.php namespace Namespace\Module\Setup; use Magento\Framework\Module\Setup\Migration; use Magento\Framework\Setup\InstallDataInterface; use Magento\Framework\Setup\ModuleContextInterface; use Magento\Framework\Setup\ModuleDataSetupInterface; /** * @codeCoverageIgnore */ class InstallData implements InstallDataInterface { /** * Customer setup factory * * @var CustomerSetupFactory */ private $customerSetupFactory; /** * Init * * @param CustomerSetupFactory $customerSetupFactory …


4
Magento Checkout街线自动填充错误
我最近注意到,Magento商店中的许多订单已将第1条街道复制到第2条街道。 我做了一些挖掘,发现它与Chrome的自动填充功能有关。如果您查看表单字段,Magento将billing [street] []和shipping [street] []用作两条街道的字段名称。因此,Chrome无法确定哪一个是哪个地址,并且无法将地址行1自动填充到这两个字段中。 周围有一些信息,您可以在表单输入字段上使用autocomplete属性来指示它应该链接到哪个字段,但这不受支持并且不起作用。实际上,如果您尝试这样做,则会禁用整个表单的自动完成功能。我也尝试过更改字段名称,但这会中断结帐。看来我需要深入研究代码并在表单上及其引用的任何地方更改字段名称,然后将其提交给PayPal,保存在数据库中,等等。这似乎是一场噩梦。 有没有人处理过这个和/或有建议?


4
如何在magento2中使用自定义Api更新客户地址?
我创建了自定义API以使用customer id或地址ID 更新客户地址。 下面的代码我用来实现它。 [供应商] / [模块] /etc/webapi.xml <route url="/V1/address/createUpdate" method="POST"> <service class="[Vendor]\[Module]\Api\CustomAddressInterface" method="addressUpdate"/> <resources> <resource ref="anonymous"/> </resources> </route> [供应商] / [模块] /Api/CustomAddressInterface.php <?php namespace [Vendor]\[Module]\Api; interface CustomAddressInterface { /** * Returns greeting message to user * * @api * @param string $name Users name. * @return string Greeting message …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.