1) I need to pull fields from the user's account profile (EasyProfile) and pre-populate a contact form (RSForm Pro). Does EasyProfile create a separate database table will accessible fields? I need to use code similar to this:
$db = JFactory::getDbo();
$db->setQuery("SELECT `EasyProfile_name, EasyProfile_custom_field_2, etc...` FROM `#__EasyProfile_Table_Name` WHERE `column_name`='value' LIMIT 1");
return $db->loadResult();
2) If a visitor registers, with all their EasyProfile fields, when they click submit, can they be automatically registered, and logged in without having to go through any verification/authentication process?
3) I don't want to ask them for a username or password. I want EasyProfile to assign their email address as their username and generate a random password.
Thank you for your time.