I am using two themes for my web and mobile site. And I'm using the ThemeKey module.
No matter what I try, the user edit page is always shown as in the theme of my web site and not my mobile site.
The following code doesn't work.
function mytheme_theme() { $items = array(); $items['edit_profile_user_profile_form'] = array( 'render element' => 'form', 'template' => 'templates/user-profile' ); return $items; } This only lets me theme the user profile page in user-profile.tpl.php. Also page--user--edit.tpl.php does not work.
How should I achieve this?