Hi,
In admin mode I am trying to see the user/*/edit page in the same way a normal user does see it, in normal content instead of overlay mode.

I tried this in template.php:

/**
* Implements hook_admin_paths_alter().
*/
function mytemplate_admin_paths_alter(&$paths) {
$paths['user/*/edit'] = FALSE;
}

but no results.

Any help is appreciated.

Comments

kscheirer’s picture

Check the url, it should be something like http://example.com/#overlay=user/1/edit, change it to http://example.com/user/1/edit. Should display the page normally w/o any overlay.