Magento 2 checkout login with mobile number or email The 2019 Stack Overflow Developer Survey Results Are InIs that possible to set phone number in checkout page?Magento 2 How to Remove the Checkout Login Popup?How can i add a field mobile number at the time of customer registration form in magento 2?How to add unique mobile number function in Magento 2 registration form?Magento 2 customer login from externalMagento 2 add mobile number to checkoutRemove login on the checkout if the email is already registeredConnect with login and password magento 2How to do customer login via mobile no and password REST APIdisplay mobile number in create an account page in magento 2

Why are there uneven bright areas in this photo of black hole?

Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?

ELI5: Why they say that Israel would have been the fourth country to land a spacecraft on the Moon and why they call it low cost?

What force causes entropy to increase?

Match Roman Numerals

Did any laptop computers have a built-in 5 1/4 inch floppy drive?

RequirePermission not working

How to add class in ko template in magento2

Can we generate random numbers using irrational numbers like π and e?

What do these terms in Caesar's Gallic Wars mean?

What is preventing me from simply constructing a hash that's lower than the current target?

A female thief is not sold to make restitution -- so what happens instead?

Is bread bad for ducks?

What to do when moving next to a bird sanctuary with a loosely-domesticated cat?

Variable with quotation marks "$()"

Falsification in Math vs Science

Likelihood that a superbug or lethal virus could come from a landfill

Why not take a picture of a closer black hole?

Old scifi movie from the 50s or 60s with men in solid red uniforms who interrogate a spy from the past

Does adding complexity mean a more secure cipher?

Pokemon Turn Based battle (Python)

Is it safe to harvest rainwater that fell on solar panels?

Short story: man watches girlfriend's spaceship entering a 'black hole' (?) forever

A word that means fill it to the required quantity



Magento 2 checkout login with mobile number or email



The 2019 Stack Overflow Developer Survey Results Are InIs that possible to set phone number in checkout page?Magento 2 How to Remove the Checkout Login Popup?How can i add a field mobile number at the time of customer registration form in magento 2?How to add unique mobile number function in Magento 2 registration form?Magento 2 customer login from externalMagento 2 add mobile number to checkoutRemove login on the checkout if the email is already registeredConnect with login and password magento 2How to do customer login via mobile no and password REST APIdisplay mobile number in create an account page in magento 2



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I want to allow the customer to Log in using email or mobile number on the checkout page and the login page.



Note: Mobile number is customer eav attribute.










share|improve this question






























    0















    I want to allow the customer to Log in using email or mobile number on the checkout page and the login page.



    Note: Mobile number is customer eav attribute.










    share|improve this question


























      0












      0








      0








      I want to allow the customer to Log in using email or mobile number on the checkout page and the login page.



      Note: Mobile number is customer eav attribute.










      share|improve this question
















      I want to allow the customer to Log in using email or mobile number on the checkout page and the login page.



      Note: Mobile number is customer eav attribute.







      magento2






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 mins ago









      magefms

      2,6342528




      2,6342528










      asked 15 mins ago









      Charvi ParikhCharvi Parikh

      592615




      592615




















          1 Answer
          1






          active

          oldest

          votes


















          0














          For Login with the customer, First you need to make mobile number required field in customer Registration form. Whenever customer register, At that time you need to add a field like mobile no. and save that field to Customer registration page.



          Now when customer login at that time they enter email id or mobile number. For this you need to override this controller



          MagentoCustomerControllerAccountLoginPost


          in your module and add code like below, Path should be like: app/code/Vendor/Modulename/Controller/Account/LoginPost.



          Now keep below code in your controller,



          <?php
          namespace VendorModulenameControllerAccount;

          use MagentoCustomerModelUrl as CustomerUrl;
          use MagentoFrameworkDataFormFormKeyValidator;
          use MagentoCustomerModelAccountRedirect as AccountRedirect;

          class LoginPost extends MagentoCustomerControllerAccountLoginPost

          public function __construct(
          MagentoFrameworkAppActionContext $context,
          MagentoCustomerModelSession $customerSession,
          MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
          CustomerUrl $customerHelperData,
          Validator $formKeyValidator,
          AccountRedirect $accountRedirect,
          MagentoCustomerModelResourceModelCustomerCollectionFactory $customerFactory
          )
          $this->_customerFactory = $customerFactory;
          parent::__construct($context,$customerSession,$customerAccountManagement,$customerHelperData,$formKeyValidator,$accountRedirect);


          public function execute()

          if ($this->session->isLoggedIn()



          I hope this will help





          share

























          • on checkout page, how can i change input type email to text ? so user can add their mobile number.

            – Charvi Parikh
            5 mins ago











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "479"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269815%2fmagento-2-checkout-login-with-mobile-number-or-email%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          For Login with the customer, First you need to make mobile number required field in customer Registration form. Whenever customer register, At that time you need to add a field like mobile no. and save that field to Customer registration page.



          Now when customer login at that time they enter email id or mobile number. For this you need to override this controller



          MagentoCustomerControllerAccountLoginPost


          in your module and add code like below, Path should be like: app/code/Vendor/Modulename/Controller/Account/LoginPost.



          Now keep below code in your controller,



          <?php
          namespace VendorModulenameControllerAccount;

          use MagentoCustomerModelUrl as CustomerUrl;
          use MagentoFrameworkDataFormFormKeyValidator;
          use MagentoCustomerModelAccountRedirect as AccountRedirect;

          class LoginPost extends MagentoCustomerControllerAccountLoginPost

          public function __construct(
          MagentoFrameworkAppActionContext $context,
          MagentoCustomerModelSession $customerSession,
          MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
          CustomerUrl $customerHelperData,
          Validator $formKeyValidator,
          AccountRedirect $accountRedirect,
          MagentoCustomerModelResourceModelCustomerCollectionFactory $customerFactory
          )
          $this->_customerFactory = $customerFactory;
          parent::__construct($context,$customerSession,$customerAccountManagement,$customerHelperData,$formKeyValidator,$accountRedirect);


          public function execute()

          if ($this->session->isLoggedIn()



          I hope this will help





          share

























          • on checkout page, how can i change input type email to text ? so user can add their mobile number.

            – Charvi Parikh
            5 mins ago















          0














          For Login with the customer, First you need to make mobile number required field in customer Registration form. Whenever customer register, At that time you need to add a field like mobile no. and save that field to Customer registration page.



          Now when customer login at that time they enter email id or mobile number. For this you need to override this controller



          MagentoCustomerControllerAccountLoginPost


          in your module and add code like below, Path should be like: app/code/Vendor/Modulename/Controller/Account/LoginPost.



          Now keep below code in your controller,



          <?php
          namespace VendorModulenameControllerAccount;

          use MagentoCustomerModelUrl as CustomerUrl;
          use MagentoFrameworkDataFormFormKeyValidator;
          use MagentoCustomerModelAccountRedirect as AccountRedirect;

          class LoginPost extends MagentoCustomerControllerAccountLoginPost

          public function __construct(
          MagentoFrameworkAppActionContext $context,
          MagentoCustomerModelSession $customerSession,
          MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
          CustomerUrl $customerHelperData,
          Validator $formKeyValidator,
          AccountRedirect $accountRedirect,
          MagentoCustomerModelResourceModelCustomerCollectionFactory $customerFactory
          )
          $this->_customerFactory = $customerFactory;
          parent::__construct($context,$customerSession,$customerAccountManagement,$customerHelperData,$formKeyValidator,$accountRedirect);


          public function execute()

          if ($this->session->isLoggedIn()



          I hope this will help





          share

























          • on checkout page, how can i change input type email to text ? so user can add their mobile number.

            – Charvi Parikh
            5 mins ago













          0












          0








          0







          For Login with the customer, First you need to make mobile number required field in customer Registration form. Whenever customer register, At that time you need to add a field like mobile no. and save that field to Customer registration page.



          Now when customer login at that time they enter email id or mobile number. For this you need to override this controller



          MagentoCustomerControllerAccountLoginPost


          in your module and add code like below, Path should be like: app/code/Vendor/Modulename/Controller/Account/LoginPost.



          Now keep below code in your controller,



          <?php
          namespace VendorModulenameControllerAccount;

          use MagentoCustomerModelUrl as CustomerUrl;
          use MagentoFrameworkDataFormFormKeyValidator;
          use MagentoCustomerModelAccountRedirect as AccountRedirect;

          class LoginPost extends MagentoCustomerControllerAccountLoginPost

          public function __construct(
          MagentoFrameworkAppActionContext $context,
          MagentoCustomerModelSession $customerSession,
          MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
          CustomerUrl $customerHelperData,
          Validator $formKeyValidator,
          AccountRedirect $accountRedirect,
          MagentoCustomerModelResourceModelCustomerCollectionFactory $customerFactory
          )
          $this->_customerFactory = $customerFactory;
          parent::__construct($context,$customerSession,$customerAccountManagement,$customerHelperData,$formKeyValidator,$accountRedirect);


          public function execute()

          if ($this->session->isLoggedIn()



          I hope this will help





          share















          For Login with the customer, First you need to make mobile number required field in customer Registration form. Whenever customer register, At that time you need to add a field like mobile no. and save that field to Customer registration page.



          Now when customer login at that time they enter email id or mobile number. For this you need to override this controller



          MagentoCustomerControllerAccountLoginPost


          in your module and add code like below, Path should be like: app/code/Vendor/Modulename/Controller/Account/LoginPost.



          Now keep below code in your controller,



          <?php
          namespace VendorModulenameControllerAccount;

          use MagentoCustomerModelUrl as CustomerUrl;
          use MagentoFrameworkDataFormFormKeyValidator;
          use MagentoCustomerModelAccountRedirect as AccountRedirect;

          class LoginPost extends MagentoCustomerControllerAccountLoginPost

          public function __construct(
          MagentoFrameworkAppActionContext $context,
          MagentoCustomerModelSession $customerSession,
          MagentoCustomerApiAccountManagementInterface $customerAccountManagement,
          CustomerUrl $customerHelperData,
          Validator $formKeyValidator,
          AccountRedirect $accountRedirect,
          MagentoCustomerModelResourceModelCustomerCollectionFactory $customerFactory
          )
          $this->_customerFactory = $customerFactory;
          parent::__construct($context,$customerSession,$customerAccountManagement,$customerHelperData,$formKeyValidator,$accountRedirect);


          public function execute()

          if ($this->session->isLoggedIn()



          I hope this will help






          share













          share


          share








          edited 4 mins ago

























          answered 8 mins ago









          Muhammad HashamMuhammad Hasham

          2,7932831




          2,7932831












          • on checkout page, how can i change input type email to text ? so user can add their mobile number.

            – Charvi Parikh
            5 mins ago

















          • on checkout page, how can i change input type email to text ? so user can add their mobile number.

            – Charvi Parikh
            5 mins ago
















          on checkout page, how can i change input type email to text ? so user can add their mobile number.

          – Charvi Parikh
          5 mins ago





          on checkout page, how can i change input type email to text ? so user can add their mobile number.

          – Charvi Parikh
          5 mins ago

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269815%2fmagento-2-checkout-login-with-mobile-number-or-email%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          منجزی محتویات تیره‌های طایفه منجزی[ویرایش] مشاهیر طایفه منجزی[ویرایش] محل سکونت[ویرایش] پانویس[ویرایش] منابع[ویرایش] منوی ناوبری«نمودار اجتماعی طوایف بختیاری»«BakhtyārBAḴTĪĀRĪ TRIBE»«اسامی طوایف و شعب ایل بختیاری»ووگسترش آن

          بیوانفورماتیک محتویات تاریخچه[ویرایش] اهداف[ویرایش] کاربردهای بیوانفورماتیک[ویرایش] زمینه‌های مهم بیوانفورماتیک[ویرایش] موضوعات سیستم نرم‌افزاری بیوانفورماتیک[ویرایش] مراکز و ابزار[ویرایش] جستارهای وابسته[ویرایش] پیوند به بیرون[ویرایش] منابع[ویرایش] منوی ناوبریووانجمن بیوانفورماتیک ایرانمرکز بیوانفورماتیک دانشگاه تهرانمرکز ملی تحقیقات بیوانفورماتیکانستیتو بیو-آی‌تیبانک داده‌های دی ان ایمرکز ملی اطلاعات بیوتکنولوژیانستیتوی بیوانفورماتیک اروپاپورتال بیوانفورماتیک ایران«فرهنگ واژه‌های مصوب فرهنگستان ـ دفتر هشتم، بخش لاتین»وووو4611085-900870420ووو