Hi,
On new user registration success I get a message "Your application was received for the following role: xxx
Thank you for applying for an account. Your account is currently pending approval by the site administrator." on the frontpage. This spoils the look of the frontpage. How to make this message display in a seperate page/pop-up? Could not find anything for this.
Comments
Comment #1
muhammadweb commentedHi,
You can use the hook_form_alter (with ref of http://api.drupal.org/api/drupal/developer--hooks--core.php/function/hoo... ) to redirect to any page
Use the $form_id is "user_register" and add the following code
$form['#redirect'] = 'your path';
Rgds
Muhammad TVK
Comment #2
jkingsnorth commentedClosing old support request where a fix was offered