I have a members form that has their email address in it.
Is there a way to update the Joomla profile email address when the user changes the email address in the member record?
Thanks
You can use a DB Save action that links to the Joomla! user table.
OK, i can see how to reference the user_profiles table, but how do I tell the DB save which columns in the user_profile to updates and which field on the form the data is coming from, since there are lots of fields on the member form and in the user_profile table, but the only one that is common to both is the email address.
Thanks, that put me on the right trail.
The trick is to have two db loads and two db saves with different data sets.
The info from my members table in one data set, which is displayed on the screen. The data from the joomla user table in the other data set, in hidden fields and updated through php with data from the screen fields.
Glad to hear you got it working.