Someone please suggest the solution?
I want prefilled data in my custom form that user already entered in the signup form.
Thanks, Rashi
Someone please suggest the solution?
I want prefilled data in my custom form that user already entered in the signup form.
Thanks, Rashi
You could use the customer's local storage. Long story, thus you can check this blog for more information.
When we've got the
customerData
from theMagento_Customer/js/customer-data.js
source, you can fill the form with it.$('#custom-form-username').val(customerData.get('name'));
. I hope this will give you some directions.