How do you get Drupal to go to a page other than the User Profile on login?
Figured it out. So, you:
SETTING IT UP:
- Create a PAGE,
- Have the default login module ONLY display on the PAGE using the BLOCK config settings.
- On load have BLOCKS set to ONLY display content to users of that ROLE.
ISSUES: Down side is that a user that has NOT logged in will see the page TITLE, and a user that is able to login will see the same page TITLE.
Please comment if that doesn't make sense, OR post another answer if there's a better solution. Thanks!!
You can:
- Use the Login Destination module.
- Let your users login at www.example.com/user?destination=some/path. This will redirect them to www.example.com/some/path after submitting the form.
- Write a custom module, implementing hook_form_alter. It's explained here: http://drupal.org/node/236234.