Closed (fixed)
Project:
Drupal core
Version:
6.9
Component:
profile.module
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
17 May 2009 at 09:12 UTC
Updated:
12 Aug 2013 at 15:26 UTC
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