When user registers on my SocialEngine website - how can I redirect him to one of my custom pages that are created inside SE4 (located at mydomain.com/index.php/pages/custompage)?
Is there a way to integrate my page into signup process?
|
When user registers on my SocialEngine website - how can I redirect him to one of my custom pages that are created inside SE4 (located at Is there a way to integrate my page into signup process? |
|||
|
|
|
Use the hook If you don't mind editing the SE4 files as a way to customize it then you may do the following on the any active modules. Otherwise you must put the following in a separate module. Find the manifest file of the module you selected to edit or created (let's say we edit
'hooks' => array(
array(
'event' => 'onUserSignupAfter',
'resource' => 'Core_Plugin_Core'
)
)
Edit Core_Plugin_Core and add the method:
public function onUserSignupAfter($event)
{
header('Location: /page/my_custom_page');
exit;
}
|
|||||||
|