I have installed 2 themes. One is my website theme the other is the maintainance theme for the admin. So when I install and activate the Chat modul I am not able to access my blocks page with my website theme anymore. I just see the maintanance them.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | Screenshot 2011-03-10 a 15.20.07.PNG | 122.14 KB | kjv |
Comments
Comment #1
darklrd commentedThis is highly unlikely. Are you sure this is happening due to DrupalChat? Which themes are you using?
Comment #2
darklrd commentedComment #3
kjv commentedi've got same problem. I'm using Root Candy as Admin Theme, AdaptiveTheme as starter Theme and Pixture Reloaded as subtheme.
As you can see in the image attached the theme should be Pixture Reloaded but Root Candy shows.
And yes, i'm pretty shure this happens because of drupalchat because as soon i disable the module blocks work properly again.
Comment #4
kjv commentedComment #5
ferst commentedI got the same issue. DrupalChat changes it.
Comment #6
darklrd commentedCould someone please post steps to reproduce this issue?
Comment #7
xdemocle commentedsame problem...
step to reproduce:
1. enable DrupalChat module
2. go in the block administration
3. and nothing else....... the block theme is broken :((((((((((((
Comment #8
catahac commentedFound the culprit (at least for me):
File: drupalchat.module
Line: 195
'noUsers' => theme('item_list', array((t('No users online')))),For some reason the theme() function causes the Blocks admin page to use the administration theme instead of the front-end theme. What I did to avoid this was to replace the above line with:
'noUsers' => '<ul><li>' . t('No users online') . '</li></ul>',This is a rough fix with the downside that the ul tag will be missing it's proper theming when that message is being displayed.
I kindly ask the developer to find the reason and add a proper fix to the problem, if possible.
Hope I helped! :)
Comment #9
aliyayasir commentedGreat #8 works!
Thanks a lot
Comment #10
ferst commentedThank you so much catahac it works!
Comment #11
Prancz_Adam commentedI have the same issue with tha latest realise too.
Comment #12
edgar saumell commentedHi all,
I'm geting the same problem. Tried with 6.x-2.0-beta17 and 6.x-2.0-beta17+2-dev
PS: I just found http://drupal.org/node/288148#comment-939925 that says:
But I'm not sure that these aply here...
PS2: #8 works!
Comment #13
darklrd commentedVery strange. Thanks for confirming that #8 works.