0

I want to add a custom attribute(image upload) here on customer groups. I have searched a lot. can anyone help me about that? enter image description here

Amiyo Ghosh
  • 95
  • 15
  • I think you need to create a patch attribute for this – Rana Zain Sep 06 '23 at 12:09
  • https://belvg.com/blog/how-to-add-new-column-on-admin-customer-group-page-in-magento-2-x.html#:~:text=You%20can%20add%20a%20custom,%2Dto%2Ddatabase%2F).&text=1-,ALTER%20TABLE%20%60customer_group%60%20ADD%20%60admin_comment%60%20VARCHAR(255,a%20typical%20structure%20(with%20registration. – Ronak Rathod Sep 06 '23 at 12:22

1 Answers1

0

Using db_schema.xml, you need to add a column to the appropriate table check this file to get information about it : vendor/magento/module-customer/etc/db_schema.xml.

Form is made the old way. You will need to have a preference for vendor/magento/module-customer/Block/Adminhtml/Group/Edit/Form.php to extend it and add the appropriate field. That should do the trick but I didn't use it for long time : https://magento.stackexchange.com/a/269641/9489.