[SOLVED] Using a different theme for admin area.
nonamer
Joined: 2007-03-28
Posts: 63 |
Posted: Sun, 2012-08-26 22:46 |
I've found this thread and did what floridave said and it works, but how can I tell it to not change the theme for say customfields module. http://gallery.menalto.com/node/89433 this is what was done in the other thread... $this->setId('ebony'); if ($_REQUEST["g2_view"] == 'core.ItemAdmin') { $this->setId('nurseryv2'); } but i don't want to include customfields on this change so I tried this... $this->setId('ebony'); if ($_REQUEST["g2_view"] == 'core.ItemAdmin') { $this->setId('nurseryv2'); } $this->setId('ebony'); if ($_REQUEST["g2_editplugin"] == 'CustomFieldItemEdit') { $this->setId('ebony'); } didn't work so can you help me? |
|
Posts: 63
nevermind now. I figured out something else.
Posts: 1642
Comments are now locked for this topic.