Forums

joomla registration plugin

rashgang 09 Sep, 2011
I have tried chronoforms but there is a problem with continue form.

First form i need all user registration detail
second form i need user extra detail
when i enable chronoforms joomla registration plugin it is sending activation mail before filling second form.

Please help me
wizdeo 12 Sep, 2011
I guess I'm trying to do the same.

I want to use ChronoForms to create an extended Joomla User registration form.
I managed to create this form and my user is egtting created without any problem.

I have my own user plugin which was expecting to be called via the onAfterStoreUser method in order to retrieve all additional fields and store them in a third party system.
But it seems that this onAfterStoreUser function is never called.

Could you confirm if I'm right and if there is another way to get all the fields submitted to be passed to my third party system ?

Thanks
GreyHead 16 Sep, 2011
Hi Wizdeo,

I checked the action code and the trigger isn't there. I guess you could add it in a Custom Code action in the Joomla! Registration action On Success event.

I think this is the code you need:
<?php
jimport( 'joomla.event.dispatcher' );
trigger('onAfterStoreUser', $args=array())
?>
The values for $args are in the Joomla! Docs here

Bob
wizdeo 16 Sep, 2011
Thanks Bob, this is great.
This topic is locked and no more replies can be posted.