You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we need to change the admin theme to be the same as the standard theme in order to give the counselors the pleasure of using the properly styled CuraChat theme.
The fix might be as simple as adding code like the following to the Opeka module:
/** * Implements hook_custom_theme */functionMYMODULE_custom_theme() {
// Set path specific theme.if (current_path() == 'admin/settings/history') {
returnvariable_get('custom_theme', 'theme_name');
}
}
benjamin-dk
changed the title
Don't show Drupal admin theme for authenticated users
Don't show Drupal admin theme for authenticated users on chat pages
Jun 11, 2015
Currently we need to change the admin theme to be the same as the standard theme in order to give the counselors the pleasure of using the properly styled CuraChat theme.
The fix might be as simple as adding code like the following to the Opeka module:
http://drupal.stackexchange.com/questions/97364/how-to-change-the-theme-for-a-particular-admin-page-in-drupal
The text was updated successfully, but these errors were encountered: