Questions tagged «customer-account»

表示与客户帐户管理有关的问题。


2
在magento(1.9)客户注册中添加新字段
我喜欢在客户注册和管理员客户创建表单中添加新字段。 字段名称是许可证号。我搜索了很多与我的需求相关的链接,但这些链接在Magento(1.9)中不起作用。甚至我发现与此相关的扩展名: http://www.magentocommerce.com/magento-connect/custome-account-profile-13594.html 当我使用密钥安装上述扩展程序时,显示错误。您能给我一些与我的要求有关的想法吗?



6
Magento 2:如何在注册表中显示地址字段?
我想在客户注册表格中显示地址字段(以保存为默认帐单地址)。我知道如何在Magento 1中进行操作。但是我对Magento 2感到震惊。在此之前有人做过吗? 像magento 1中一样的任何xml文件更新 <customer_account_create> <reference name="customer_form_register"> <action method="setData"><key>show_address_fields</key><value>1</value></action> </reference> </customer_account_create>

1
Magento 2以ui_component形式显示客户属性
我创建了ui_component表单。 在需要显示客户详细信息的地方,与客户编辑相同。 但是,我可以从customer_entity表中显示其数据。 DataProvider.php public function getData() { if (isset($this->loadedData)) { return $this->loadedData; } // {Vendor}\{Module}\Model\GridFactory // Returns Customer Resource Model $items = $this->gridFactory->create()->getCollection(); $items->getSelect()->join('customer_entity_text as second', 'main_table.entity_id = second.entity_id'); //print_r($items->getData()); exit; foreach($items as $contact){ $this->loadedData[$contact->getEntityId()]['contact'] = $contact->getData(); } return $this->loadedData; } 我已将customer_entity_text表与Factory一起加入以便显示status(客户属性)。 现在,我的第二个属性是filetype。在中customer_entity_varchar,首先我认为要添加另一个联接,但我认为这不是好方法。 那么,对此有什么解决方案吗?我需要Customer Attribute在表单中同时显示两者。 ui_component <field name="value"> <argument …

3
以编程方式创建客户
我想以编程方式创建一些客户,并且在保存网站ID时遇到问题。 我有多个网站ID: 0 => admin 1 => germany 2 => hungary 3 => romania 这是我的代码: $customer = Mage::getModel("customer/customer"); $customer->setWebsiteId(3); $customer->setStoreId(1); ..... $customer->save(); 当我保存一个客户时,我Admin从网站下拉列表中选择了值。无论我给网站ID(如12321)赋予什么价值,我都得到了Admin价值。为什么呢 谢谢。

1
如何重写控制器AccountController
我需要重写一个方法控制器 Core/Mage/Customer/controllers/AccountController.php 并添加新方法。由于此控制器的编辑是错误的-应该覆盖它。 根据项目要求,控制器必须位于 local/New/Mage/Customer/controllers/AccountController.php 要做到这一点,创建一个文件的配置,但地址customer/account/test,customer/account /ajax没有回应,而customer/account/login这是不覆盖。请协助执行。 app / app / etc / modules / New_Mage_Customer.xml <?xml version="1.0"?> <config> <modules> <New_Mage_Customer> <active>true</active> <codePool>local</codePool> </New_Mage_Customer> </modules> </config> app / code / local / New / Mage / Customer / etc / config.xml <?xml version="1.0"?> <config> <modules> <New_Mage_Customer> <version>0.0.1</version> </New_Mage_Customer> </modules> <frontend> …

2
如何在Magento 2中快速更改客户密码
在管理员配置下“管理客户”部分的Magento 1中,我们可以轻松更新/更改客户新密码。 在Magento 2中,仅使用电子邮件发送密码重置会有所帮助,但并非总是如此。这可能是一个简单的问题,但有时会节省很多时间。 有什么简单的方法可以在Magento 2中更改客户密码? 数据库中有什么方法可以直接更改加密类型的密码? 帮助将不胜感激。

2
在Magento 2中将自定义活动链接添加到客户帐户导航
我正在尝试在客户帐户导航中添加自定义链接。我的自定义链接也显示在帐户导航中,并且也可以正常工作,但是单击时并没有显示为活动/当前状态。 下面是我的代码: /app/code/Namespace/Support/view/frontend/layout/customer_account.xml <?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="customer_account_navigation"> <block class="Magento\Framework\View\Element\Html\Link\Current" name="customer-account-navigation-suppport-ticket-link" after="-"> <arguments> <argument name="path" xsi:type="string">support/customer/index</argument> <argument name="label" xsi:type="string">Support Ticket</argument> </arguments> </block> </referenceBlock> </body> </page> / app / code /命名空间/Support/Controller/Customer/Index.php <?php namespace Namespace\Support\Controller\Customer; use Magento\Framework\App\Action; use Magento\Framework\Exception\NotFoundException; use Magento\Framework\Controller\ResultFactory; class Index extends \Namespace\Support\Controller\Index { /** * Show …

4
即使输入了正确的密码,Magento默认验证码也会显示“不正确的验证码”
在我的magento网站中,我启用了从头开始构建的自定义主题的“创建帐户”验证码形式的自定义主题(不是“ rwd”),但是当我尝试在该字段中提供正确的验证码代码来注册客户时,即使显示“错误验证码”,然后刷新并重定向到同一页面。 客户端或服务器中没有警告/错误。 谁能指导我?


2
客户登录后如何删除旧的购物车产品
客户访问网站并添加产品, 然后客户登录。 如果客户已经有购物车项目,则其删除的旧项目,新添加的项目仅显示 例: 客户已经在购物车中有5个产品>访问站点>在购物车中新添加2个产品>登录客户帐户>显示购物车新添加2个产品(旧购物车产品已删除) 任何建议将不胜感激。
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.