How to Redirect Users to Different Registration Confirmation Pages
If you need to redirect users to a different confirmation page either after they register on your site, or after clicking on the email confirmation link (if you have email confirmation enabled), follow these steps:
To redirect users to a custom URL immediately after registration:
- Open up your /system/application/config/config.php file for editing
- On its own line at the very end, add the following configuration item:
$config['jrox_custom_confirmation_page'] = 'http://www.customurl.com/custom.php"; - Where http://www.customurl.com/custom.php is the web page you want your users to be redirected to after registration.
- Save your config.php file back to your JEM site.
To redirect users to a custom URL AFTER they click on the email confirmation link sent by JEM to confirm their account:
- Open up your /system/application/config/config.php file for editing
- On its own line at the very end, add the following configuration item:
$config['jrox_custom_redirect_after_confirmation_page'] = 'http://www.customurl.com/custom.php';
- Where http://www.customurl.com/custom.php is the web page you want your users to be redirected to after registration.
- Save your config.php file back to your JEM site.
