Hi,
Question:
Customers come to my website, sign into their member account and place an order.
Once the order is placed, customers need to complete a form. I created multiple forms using “user input fields”.
Each form requests, contact information.
Name:
Address:
Phone:
Email:
How can I automatically populate the contact information based off information saved in each members account i.e. (My Addresses & My Accounts)
3 Likes
I haven’t done anything with member’s pages yet(we have not implemented it into our site because other things have taken precedent over it) but it looks like there is two ways of doing it found here: https://www.wix.com/corvid/forum/community-discussion/get-user-first-name
To sum up the page, you can either implement a separate database that adds members as they create accounts and then just use a wixData.query() to grab the name from the data base and then use a $w(element).value = query.first_name to automatically insert or you can do a similar process but first check to see if they are logged in first. If they are logged in, do the query to “members/privatemembersdata” and get it there.
Check the link for full details though.