Magento – Magento2- How to remove last name

magento2

in magento2 , How to remove last name ,Only first name is retained.

I see magento1.x have such a plugins.

Best Answer

You can run below query in your database for set lastname as optional for customer.

UPDATE eav_attribute SET is_required = 0 WHERE attribute_code = 'lastname' and entity_type_id = 1

Go to below file where you can find class field-name-lastname in code. delete complete this div for last name.

vendor\magento\module-customer\view\frontend\templates\widget\name.phtml

You can copy the file to your custom theme or module and change accordingly. Not recommended to change directly in core module.

Related Topic