• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Joomla! User Registration

Joomla! User Registration 5 years 1 month ago #39941

Hello,
I'm using Joomla! User Registration plugin and I would like to know If it's possible to merge 2 fields from form to user table of joomla.

For explain in my registration form I have 2 fileds : "first name" and "name"
I would like to merge theses fields and map with "name" of Joomla user table.
Is it possible ?

Hope you can understand what I try to explain, my english isn't good :/
The administrator has disabled public write access.

Joomla! User Registration 5 years 1 month ago #39946

  • iceferret
  • iceferret's Avatar
  • OFFLINE
  • Gold Boarder
  • Posts: 246
  • Thank you received: 64
Create a hidden field 'fullname' in your form.
In PhP scripts called on form process add
if(empty($invalid)){
$_POST['form']['fullname'] = $_POST['form']['first name'].' '.$_POST['form']['name'];
}

Finally map fullname to Name in the registration bit
If you can keep your head when all about you are losing theirs, then you obviously don't understand the situation!
Last Edit: 5 years 1 month ago by iceferret.
The administrator has disabled public write access.

Joomla! User Registration 5 years 1 month ago #39949

thank you very much, I'm trying right now
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!