<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Magento Expert</title>
	<atom:link href="https://www.the-mage-expert.com/tag/customer/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.the-mage-expert.com</link>
	<description>Your Magento Commerce Expert</description>
	<lastBuildDate>Tue, 24 Jan 2023 09:37:24 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.6</generator>
	<item>
		<title>Show address data (like company, name) on registration form</title>
		<link>https://www.the-mage-expert.com/1143/magento-2-show-address-data-like-company-name-on-registration-form/</link>
		<comments>https://www.the-mage-expert.com/1143/magento-2-show-address-data-like-company-name-on-registration-form/#comments</comments>
		<pubDate>Fri, 25 Aug 2017 05:47:48 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[address]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[Magento 2]]></category>
		<category><![CDATA[registration]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=1143</guid>
		<description><![CDATA[By default, the Magento 2 registration form does not show address data such as the company, name or street. To change that, simply create customer_account_create.xml in the folder app/design/Your Vendor/Your Theme/Magento_Customer/layout and add the following code: [crayon-6a7abfec35220/] Now just clear&#8230;]]></description>
				<content:encoded><![CDATA[<p>By default, the Magento 2 registration form does not show address data such as the company, name or street. To change that, simply create <strong>customer_account_create.xml</strong> in the folder  <strong>app/design/Your Vendor/Your Theme/Magento_Customer/layout</strong> and add the following code:</p><pre class="crayon-plain-tag">&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;!--
/**
* Copyright &copy; 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
--&gt;
&lt;page xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; layout=&quot;1column&quot; xsi:noNamespaceSchemaLocation=&quot;../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd&quot;&gt;
	&lt;body&gt;
		&lt;referenceBlock name=&quot;customer_form_register&quot;&gt;
			&lt;arguments&gt;
				&lt;argument name=&quot;show_address_fields&quot; xsi:type=&quot;string&quot;&gt;1&lt;/argument&gt;
			&lt;/arguments&gt;
		&lt;/referenceBlock&gt;
	&lt;/body&gt;
&lt;/page&gt;</pre><p>Now just clear the cache and reload the registration form / page. </p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/1143/magento-2-show-address-data-like-company-name-on-registration-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User not able to login after version update</title>
		<link>https://www.the-mage-expert.com/952/magento-user-not-able-to-login-after-version-update/</link>
		<comments>https://www.the-mage-expert.com/952/magento-user-not-able-to-login-after-version-update/#comments</comments>
		<pubDate>Thu, 22 Jan 2015 13:24:01 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[login]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=952</guid>
		<description><![CDATA[If the user is not able to login after a Magento version update, you have most likely overwritten the login.phtml template in your local theme. To fix that problem, open \customer\form\login.phtml in your local theme and add the following code&#8230;]]></description>
				<content:encoded><![CDATA[<p>If the user is not able to login after a Magento version update, you have most likely overwritten the login.phtml template in your local theme. To fix that problem, open <em>\customer\form\login.phtml</em> in your local theme and add the following code right below the form tags:</p>
<p></p><pre class="crayon-plain-tag">&lt;?php echo $this-&gt;getBlockHtml('formkey'); ?&gt;</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/952/magento-user-not-able-to-login-after-version-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unlock customer programmatically</title>
		<link>https://www.the-mage-expert.com/699/magento-unlock-customer-programmatically/</link>
		<comments>https://www.the-mage-expert.com/699/magento-unlock-customer-programmatically/#comments</comments>
		<pubDate>Wed, 22 Oct 2014 11:49:11 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[customer]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=699</guid>
		<description><![CDATA[Use the below code to unlock a customer programmatically. [crayon-6a7abfec3fc82/]]]></description>
				<content:encoded><![CDATA[<p>Use the below code to unlock a customer programmatically.</p>
<p></p><pre class="crayon-plain-tag">$customer-&gt;setFailedLogins(0)-&gt;setLastFailedLogin(0)-&gt;save();</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/699/magento-unlock-customer-programmatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
