Quote:
Originally Posted by ricktas
On our live 4.1.12 system the extra VW 3.0.19 buttons are blank (no icon) on our 4.2.0 test they are ok.
I'm upgrading on Friday so have not bothered reporting it. (We have the pro version).
|
Check your stylevar named 'imgdir_vaultedit'. The paths on your site suggest this value is empty, or that your vBulletin board URL (bburl) ends in a slash, which is not allowed according to that setting's description. If the stylevar is empty, it should be set to 'vault/images/editor'. If not, it may not be present in the style cache, so you should try to edit the stylevar anyway to rebuild the cache.
Quote:
Originally Posted by howarde
First one shows with the plugin - Editor - Hide Wiki Buttons from Standard, Editor - Init Wiki Buttons, and Editor - WYSIWYG Support - disabled... It added a few BB codes to the list (underlined in red), but that's no biggie. Second image shows with those plugins enabled.
|
In
vault/special_plugins_newpost.php, find:
Code:
if (strpos($tag['buttonimage'], 'vault/images/bb_') === false)
Replace with:
Code:
if (strpos($tag['buttonimage'], 'vault/images/bb_') !== false)