Der Benutzername oder Passwort stimmen nicht überein

"Registrierung"

Leider ist der Username Genommen

Leider ist die E-Mail ist bereits registriert

Bitte geben Sie die dreistellige

Alle Felder sind Pflichtfelder

Can i auto-populate custom fields ?

Can i auto-populate custom fields ?

In order to auto-populate a custom field defined for your membership subscription form you will need a custom script in the Values property of the field, for example:

//<code>
$db =& JFactory::getDBO();
$db->setQuery("SELECT your_value FROM your_table");
$result = $db->loadResult();
return $result;
//</code> 
Feedback