문제

I don't remember where is option in backend how to hide fields with address information during reg new account.

enter image description here

도움이 되었습니까?

해결책

You can use below code for hide address information from customer registration form.

Create file path in your theme and use this code:

app/design/frontend/Your_VendorName/Your_ThemeName/Magento_Customer/layout/customer_account_create.xml

<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_form_register">
            <arguments>
                <argument name="show_address_fields" xsi:type="boolean">false</argument>
            </arguments>
        </referenceBlock>
    </body>
</page>

Let me know if any query.

Hope it help!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top