Quote:
Originally Posted by NeutralizeR
Thank you
But it still executes 2 queries at forumhome...
|
I have found the problem. Unfortunately, this is a vbulletin issue, a question of datastore.
Here is the description of the problem:
To parse chatbox announcment bbcode, I need to use the bbcode parsing php class to parse bbcode tags.
The problem is that this class needs the bbcodecache datastore which contains the custom bbcode.
And as plugins are part of the datastores, it is impossible to add a new datastore to be retrieved in a file which doesn't contain it actually.
There is a possible fix with a file modification :
Open the includes/global.php file and add just after :
PHP Code:
define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
the following code bits :
PHP Code:
$specialtemplates[] = 'bbcodecache';
Quote:
Originally Posted by Mastar
Here is the screen shot for the issues with opera.
|
This problem is due to the overflow-y property is use which is unfornately not yet supported by opera as I've just seen.
Anyway you can fix this with the following modification :
In the template mgc_chatbox, find
and replace it by
.
This will fix the problem
but you will have a horizontal scrollbar and a vertical one, even though the horizontal one is of no use ...
In the next version, I'll put a detection mechanism which check the browser of the user and applies the compatible css so that user with browser supporting the overflow-y css property don't loose the beauty of having only the vertical scrollbar.