Magento 2 How to remove personal information fields(first name, last name) from customer account create page?Create link on customer account BUT not lastRemove newsletter link from customer account navigationRemove Required field on Customer Create Accountmagento customer edit not working showing blank page and also customer name not showingMagento2 : How to remove email validation from customer account registration pageMagento2 : How to remove Personal Information from customer account registration pageCreate link dynamically in customer account navigation in Magento 2Magento 2 - Add Dynamic fields in Customer Account InformationMagento 2 How to Pre-fill Billing/Shipping address fields with customer account information data?Checkout shipping address - customer first name and last name prefilled

How to trick a fairly simplistic kill-counter?

Why have both: BJT and FET transistors on IC output?

Oath of redemption: Does Emmissary of Peace reflect damage taken from Aura of the Guardian?

How to prevent a single-element caster from being useless against immune foes?

Domain Admin Account Accessing SQL Server

Is it unprofessional to mention your cover letter and resume are best viewed in Chrome?

Can machine learning learn a function like finding maximum from a list?

Novel - Accidental exploration ship, broadcasts a TV show to let people know what they find

Best Ergonomic Design for a handheld ranged weapon

Python π = 1 + (1/2) + (1/3) + (1/4) - (1/5) + (1/6) + (1/7) + (1/8) + (1/9) - (1/10) ...1748 Euler

What is the significance of $(logname)?

Is it really a problem to declare that a visitor to the UK is my "girlfriend", in terms of her successfully getting a Standard Visitor visa?

How to let cacti grow even if no player is near?

How do Canadians get a visa to go to Saudi Arabia?

Just how much information should you share with a former client?

Using Python in a Bash Script

Went to a big 4 but got fired for underperformance in a year recently - Now every one thinks I'm pro - How to balance expectations?

Backpacking with incontinence

Is the EU really banning "toxic propellants" in 2020? How is that going to work?

Difference between HCD and CID collision induced dissociations?

May a hotel provide accommodation for fewer people than booked?

Word for giving preference to the oldest child

How to innovate in OR

Adding a (stair/baby) gate without facing walls



Magento 2 How to remove personal information fields(first name, last name) from customer account create page?


Create link on customer account BUT not lastRemove newsletter link from customer account navigationRemove Required field on Customer Create Accountmagento customer edit not working showing blank page and also customer name not showingMagento2 : How to remove email validation from customer account registration pageMagento2 : How to remove Personal Information from customer account registration pageCreate link dynamically in customer account navigation in Magento 2Magento 2 - Add Dynamic fields in Customer Account InformationMagento 2 How to Pre-fill Billing/Shipping address fields with customer account information data?Checkout shipping address - customer first name and last name prefilled






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








1















Please help me to solve it. I have attached the screen short here










share|improve this question
































    1















    Please help me to solve it. I have attached the screen short here










    share|improve this question




























      1












      1








      1








      Please help me to solve it. I have attached the screen short here










      share|improve this question
















      Please help me to solve it. I have attached the screen short here







      customer-account magento2.3.1






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jul 23 at 9:51









      Himani Tayal

      10912 bronze badges




      10912 bronze badges










      asked Jul 23 at 7:34









      KANZARIYA ANILKANZARIYA ANIL

      113 bronze badges




      113 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          0














          You just need to Override vendor/magento/module-customer/view/frontend/templates/form/register.phtml to your theme



          Path should be like: app/design/frontend/Vendor/theme/Magento_Customer/templates/form/register.phtml



          Now just remove or comment



          <legend class="legend"><span><?= $block->escapeHtml(__('Personal Information')) ?></span></legend><br>
          <input type="hidden" name="success_url" value="<?= $block->escapeUrl($block->getSuccessUrl()) ?>">
          <input type="hidden" name="error_url" value="<?= $block->escapeUrl($block->getErrorUrl()) ?>">
          <?= $block->getLayout()->createBlock('MagentoCustomerBlockWidgetName')->setObject($block->getFormData())->setForceUseCustomerAttributes(true)->toHtml() ?>
          <?php if ($block->isNewsletterEnabled()): ?>
          <div class="field choice newsletter">
          <input type="checkbox" name="is_subscribed" title="<?= $block->escapeHtmlAttr(__('Sign Up for Newsletter')) ?>" value="1" id="is_subscribed"<?php if ($block->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox">
          <label for="is_subscribed" class="label"><span><?= $block->escapeHtml(__('Sign Up for Newsletter')) ?></span></label>
          </div>
          <?php /* Extensions placeholder */ ?>
          <?= $block->getChildHtml('customer.form.register.newsletter') ?>
          <?php endif ?>





          share|improve this answer



























            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%2f282945%2fmagento-2-how-to-remove-personal-information-fieldsfirst-name-last-name-from%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














            You just need to Override vendor/magento/module-customer/view/frontend/templates/form/register.phtml to your theme



            Path should be like: app/design/frontend/Vendor/theme/Magento_Customer/templates/form/register.phtml



            Now just remove or comment



            <legend class="legend"><span><?= $block->escapeHtml(__('Personal Information')) ?></span></legend><br>
            <input type="hidden" name="success_url" value="<?= $block->escapeUrl($block->getSuccessUrl()) ?>">
            <input type="hidden" name="error_url" value="<?= $block->escapeUrl($block->getErrorUrl()) ?>">
            <?= $block->getLayout()->createBlock('MagentoCustomerBlockWidgetName')->setObject($block->getFormData())->setForceUseCustomerAttributes(true)->toHtml() ?>
            <?php if ($block->isNewsletterEnabled()): ?>
            <div class="field choice newsletter">
            <input type="checkbox" name="is_subscribed" title="<?= $block->escapeHtmlAttr(__('Sign Up for Newsletter')) ?>" value="1" id="is_subscribed"<?php if ($block->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox">
            <label for="is_subscribed" class="label"><span><?= $block->escapeHtml(__('Sign Up for Newsletter')) ?></span></label>
            </div>
            <?php /* Extensions placeholder */ ?>
            <?= $block->getChildHtml('customer.form.register.newsletter') ?>
            <?php endif ?>





            share|improve this answer





























              0














              You just need to Override vendor/magento/module-customer/view/frontend/templates/form/register.phtml to your theme



              Path should be like: app/design/frontend/Vendor/theme/Magento_Customer/templates/form/register.phtml



              Now just remove or comment



              <legend class="legend"><span><?= $block->escapeHtml(__('Personal Information')) ?></span></legend><br>
              <input type="hidden" name="success_url" value="<?= $block->escapeUrl($block->getSuccessUrl()) ?>">
              <input type="hidden" name="error_url" value="<?= $block->escapeUrl($block->getErrorUrl()) ?>">
              <?= $block->getLayout()->createBlock('MagentoCustomerBlockWidgetName')->setObject($block->getFormData())->setForceUseCustomerAttributes(true)->toHtml() ?>
              <?php if ($block->isNewsletterEnabled()): ?>
              <div class="field choice newsletter">
              <input type="checkbox" name="is_subscribed" title="<?= $block->escapeHtmlAttr(__('Sign Up for Newsletter')) ?>" value="1" id="is_subscribed"<?php if ($block->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox">
              <label for="is_subscribed" class="label"><span><?= $block->escapeHtml(__('Sign Up for Newsletter')) ?></span></label>
              </div>
              <?php /* Extensions placeholder */ ?>
              <?= $block->getChildHtml('customer.form.register.newsletter') ?>
              <?php endif ?>





              share|improve this answer



























                0












                0








                0







                You just need to Override vendor/magento/module-customer/view/frontend/templates/form/register.phtml to your theme



                Path should be like: app/design/frontend/Vendor/theme/Magento_Customer/templates/form/register.phtml



                Now just remove or comment



                <legend class="legend"><span><?= $block->escapeHtml(__('Personal Information')) ?></span></legend><br>
                <input type="hidden" name="success_url" value="<?= $block->escapeUrl($block->getSuccessUrl()) ?>">
                <input type="hidden" name="error_url" value="<?= $block->escapeUrl($block->getErrorUrl()) ?>">
                <?= $block->getLayout()->createBlock('MagentoCustomerBlockWidgetName')->setObject($block->getFormData())->setForceUseCustomerAttributes(true)->toHtml() ?>
                <?php if ($block->isNewsletterEnabled()): ?>
                <div class="field choice newsletter">
                <input type="checkbox" name="is_subscribed" title="<?= $block->escapeHtmlAttr(__('Sign Up for Newsletter')) ?>" value="1" id="is_subscribed"<?php if ($block->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox">
                <label for="is_subscribed" class="label"><span><?= $block->escapeHtml(__('Sign Up for Newsletter')) ?></span></label>
                </div>
                <?php /* Extensions placeholder */ ?>
                <?= $block->getChildHtml('customer.form.register.newsletter') ?>
                <?php endif ?>





                share|improve this answer













                You just need to Override vendor/magento/module-customer/view/frontend/templates/form/register.phtml to your theme



                Path should be like: app/design/frontend/Vendor/theme/Magento_Customer/templates/form/register.phtml



                Now just remove or comment



                <legend class="legend"><span><?= $block->escapeHtml(__('Personal Information')) ?></span></legend><br>
                <input type="hidden" name="success_url" value="<?= $block->escapeUrl($block->getSuccessUrl()) ?>">
                <input type="hidden" name="error_url" value="<?= $block->escapeUrl($block->getErrorUrl()) ?>">
                <?= $block->getLayout()->createBlock('MagentoCustomerBlockWidgetName')->setObject($block->getFormData())->setForceUseCustomerAttributes(true)->toHtml() ?>
                <?php if ($block->isNewsletterEnabled()): ?>
                <div class="field choice newsletter">
                <input type="checkbox" name="is_subscribed" title="<?= $block->escapeHtmlAttr(__('Sign Up for Newsletter')) ?>" value="1" id="is_subscribed"<?php if ($block->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox">
                <label for="is_subscribed" class="label"><span><?= $block->escapeHtml(__('Sign Up for Newsletter')) ?></span></label>
                </div>
                <?php /* Extensions placeholder */ ?>
                <?= $block->getChildHtml('customer.form.register.newsletter') ?>
                <?php endif ?>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jul 23 at 8:03









                Muhammad HashamMuhammad Hasham

                5,90610 gold badges31 silver badges81 bronze badges




                5,90610 gold badges31 silver badges81 bronze badges






























                    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%2f282945%2fmagento-2-how-to-remove-personal-information-fieldsfirst-name-last-name-from%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

                    Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

                    Area configuration aggregation error after install Porto themeMagento 2.1 CE Installed but front/backend not loading/workingCSS not loading on page within Magento 2 pageCannot install module in Magento 2no commands defined in the “setup” namespace. in Magento2Magento 2: Static files are present but shows 404Why do i have to always run the commands to clean cache in Magento 2.1.8?Failure reason: 'Unable to unserialize value.'Error 500 after magento migrationIn production mode the site does not loadMagento 2 : Error 500 after installing

                    Middle Expansion Olielle Resaix Definition: Uttering songs of triumph shouting with joy triumphant exulting Sejunction Journal 붙다 달 고급 품목 외출 The stretch trades the screeching tin. Definition: The act of speaking with a drawl a drawl Cough Sand Definition: An uproar a quarrel a noisy outbreak Shake Iron Publicize Horse House Baby 사과 Resaix Flaggy Jelly Temporary Unequaled Puppet A drop in the bucket Shrew 성격 회원 성질 미팅 The burn frames the tacky quality. Materialistic The smoke reduces the way. Yammoe Nondescript Cheek 얼굴 배 약하다 날리다 타다 The illegal country shows the iron. Help Rule Drearien Smoke Teaching Meaty Wasp Abraham Lincoln Jaws 진심 수리하다 Size Cork Idea Convert Think Lark John Lennon 거울 청소 군 추천하다 아이스크림