Hi,
I've got a registration/profile form that's working fine, db record loader works fine, updates form, etc.
In the form I've got "password" and "verify password"
When the form is pulled up to edit, the "password" field is populated with the md5 hash.
I'd like it to be blank (like it is when you edit profile info in Joomla) and not update unless user adds something to that field.
Hope that makes sense.
Thanx for your help
Mark
I've got a registration/profile form that's working fine, db record loader works fine, updates form, etc.
In the form I've got "password" and "verify password"
When the form is pulled up to edit, the "password" field is populated with the md5 hash.
I'd like it to be blank (like it is when you edit profile info in Joomla) and not update unless user adds something to that field.
Hope that makes sense.
Thanx for your help
Mark
Hello marklandry,
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How can I link two DB Multi Record Loaders?
P.S: I'm just an automated service😉
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How can I link two DB Multi Record Loaders?
P.S: I'm just an automated service😉
Hi Mark,
The simplest solution is probably to change the name of the 'password' input so that CF doesn't try to re-publish it. Try password_new' or something like that and I think it will fix the problem.
If it has to be 'password' then try a Custom Code action in the On Load event with this code in it:
Bob
The simplest solution is probably to change the name of the 'password' input so that CF doesn't try to re-publish it. Try password_new' or something like that and I think it will fix the problem.
If it has to be 'password' then try a Custom Code action in the On Load event with this code in it:
<?php
$form->data['password'] = '';
?>
Bob
Thanx Bob,
Figured it out, removed the user registration action and added a jooomla user/create action...
Figured it out, removed the user registration action and added a jooomla user/create action...
Sorry, one more thing,
I tried
$form->data['password'] = '';
and password field is still populating on load... All I need at this point is for it to be blank on load.
Thanx again
I tried
$form->data['password'] = '';
and password field is still populating on load... All I need at this point is for it to be blank on load.
Thanx again
my bad,
I put the custom code after the db record loader and it seems to work fine.
Only thing left is that when I try to change the password it doesn't work...
I put the custom code after the db record loader and it seems to work fine.
Only thing left is that when I try to change the password it doesn't work...
This topic is locked and no more replies can be posted.