Magento – City field not required on checkout in Magento 2

checkoutmagento-2.1

How to make city field not required on checkout?

Best Answer

Run this query in database

UPDATE `eav_attribute` SET `is_required` = 0 WHERE `attribute_code` = 'city';

this will remove required.

Related Topic