I have a custom address field and I want to be able to update this field on the front end. I am able to display the data, but for saving, what should the field name be for the system to pick it up? Or do I have to subscribe to a notification?
On the AddAddress.cshtml page, I can get the value like this:
GetString("UserManagement:User.UserAddress.AccessUserAddress_PuljeO")
where AccessUserAddress_PuljeO is the system name of the custom field. I have tried all combinations for "name" on the input element, but the system does not change the value on submit.
I have used a similar setup for custom order line fields, and it saves to the cart without any extra code.
Is this possible?