Lindroidsoup
Forum Replies Created
-
Forum: Plugins
In reply to: [Special Text Boxes] WarningsCarlos,
The original line is as follows:
if($block['mode'] == 'js') {
This doesn’t seem to properly pass that it’s an array and not a string as it’s being taken- which is presumably why we’re seeing the errors.
Replace it with:
if(is_array($block) && $block['mode'] == 'js') {
That might not be the cleanest way to do it, but it at least suppresses the error and allows the plugin to still function- from what I can see anyway.
Once you’ve made the edit, restart Apache, clear any server & browser caches, and you should be all set.
Regards,
Lindroidsoup
Forum: Plugins
In reply to: [Special Text Boxes] WarningsChange line 386 of stb-block-class.php to the following:
if(is_array($block) && $block['mode'] == 'js') {
Regards,
Lindroidsoup
Forum: Plugins
In reply to: [Special Text Boxes] Warning: Illegal string offset 'mode'Change line 386 of stb-block-class.php to the following:
if(is_array($block) && $block['mode'] == 'js') {
Regards,
Lindroidsoup
Forum: Plugins
In reply to: [Special Text Boxes] WarningsWarning: Illegal string offset ‘mode’ in /home/(user)/public_html/wp-content/plugins/wp-special-textboxes/stb-block-class.php on line 386
CentOS 6.5 x86
suPHP
PHP 5.4.24
MySQL 5.5.34
cPanel 11.40
WP 3.8.1Forum: Plugins
In reply to: [Black Studio TinyMCE Widget] Change Title Bar Text ColorHello Marco,
That, good sir, is exemplary customer service! That was exactly the case, and the Country Knights Chess Club thanks you profusely! Please mark this support request as resolved!
Regards,
Christopher Cork
IT Officer
CountryKnightsChessClub
[email protected]Forum: Plugins
In reply to: [Black Studio TinyMCE Widget] Change Title Bar Text ColorHello Marco,
Thank you for looking into this for me! I didn’t realize it wasn’t a TinyMCE issue, so thank you even more!
Unfortunately, I tried editing the css with the entry you provided- and no dice- The title text is still a subdued shade of the title bar color.
I’ll try and contact the theme developer today and see if they have any suggestions as to where that particular control may be.
Thanks!