Magento – Sorting Fields in Customer Address Form Edit Admin Section

customer-addresssorting

I'm very confused by sorting some fields in customer address edit form.

customer's address form

I want to move City after State/Province and Subdistrict after City. How can I do that ?

Best Answer

you can change the customer attibute sort order in customer_eav_attribute table

//28 is city attribute id
UPDATE `customer_eav_attribute` SET `sort_order`= 100 WHERE `attribute_id` = 28
Related Topic