Loading...
Changes Saved.
Error Occurred!
Home Products Blog Community Support Resellers

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:

  1. Open up your /system/application/config/config.php file for editing
  2. On its own line at the very end, add the following configuration item:

    $config['jrox_custom_confirmation_page'] = 'http://www.customurl.com/custom.php";
  3. Where http://www.customurl.com/custom.php is the web page you want your users to be redirected to after registration.
  4. 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:

  1. Open up your /system/application/config/config.php file for editing
  2. 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';

  3. Where http://www.customurl.com/custom.php is the web page you want your users to be redirected to after registration.
  4. Save your config.php file back to your JEM site.



Related Articles