user not showing in user manager after registration

yvetteross 23 Mar, 2010
HI
I am very new to ChronoForms and need help on the following> I developed a form to override the original Joomla registration form and worked according to the tutorial "Building a registration form using Chronoforms". All works well except the 'new' user does not get listed in the 'user manager' in Joomla. Can someone please tell me what I am doing wrong here??
GreyHead 23 Mar, 2010
Hi yvetteross,

Almost impossible to tell from this but my best guess is that the Joomla Registration plugin isn't enabled on the Form plugins tab (green bars are enabled).

Bob
yvetteross 30 Mar, 2010
Hi

Yes, this is enabled. Is there anywhere else this must be enabled?

Thanks
GreyHead 30 Mar, 2010
Hi yvetteross,

No it isn't. A green bar is enabled, a red bar is disabled.

Bob
yvetteross 06 Apr, 2010
....and therein lies the problem!
Thanks so much for your help.

One other thing - when a subscriber registers, they are automatically added to the User Manager which is great. However, is there any way that they can be added to the User Manager but NOT enabled? At the moment when they are added to User Manager, they are automatically 'enabled'. I would like to access them first before giving them access to certain areas of my website.

Thanks
GreyHead 06 Apr, 2010
Hi Yvette,

Yes you can. Users are automatically blocked if you use account activation. If not then you can set the user as blocked in the Extra Code After box of the plugin. I forget the exact code but I recall a thread where Fredrik and I both posted about this a few weeks ago - Fredrik had the correct code. Try searching on 'blocked' and see if that finds it.

Bob
nml375 06 Apr, 2010
Hi Yvette,
The code Bob is referring to is something along these lines:
<?
$MyPlugins =& CFPlugins::getInstance($MyForm->formrow->id);
$user =& $MyPlugins->cf_joomla_registration['user'];
$user->set('block', 1);
$user->save();
?>


/Fredrik
This topic is locked and no more replies can be posted.