russoedu
Forum Replies Created
-
Forum: Reviews
In reply to: [qTranslate] Nice Plugin!!!Buchtic1, you can change the “ed_size” size:
$q_config['js']['qtrans_xsplit'] = " var usr_sett_ed = getUserSetting( 'editor' ); if ( parseInt( getUserSetting( 'ed_size' ) ) < 600 ) { setUserSetting( 'ed_size', 600 ); } setUserSetting( 'editor', 'html' ); String.prototype.xsplit = function(_regEx){
Forum: Reviews
In reply to: [qTranslate] Nice Plugin!!!I’m glad to help!
Forum: Plugins
In reply to: [ULTIMATE TABLES] How to translate?Marcito, I made two small changes to allow translations in Ultimate Tables:
Open /wp-content/plugins/ultimate-tables/init.php and edit these two lines: 230 and 253
$output.= '<th>'.$item[0].'</th>';
Change to
$output.= '<th>'.__($item[0]).'</th>';
The “__” function is the default WordPress translation function. So, if you use qTranslate, you can use any qTranslate tags to make your table multi language ??
Loved this plugin, the produced table looks very nice in my site!
Forum: Reviews
In reply to: [qTranslate] Nice Plugin!!!1:
Change
define('QT_SUPPORTED_WP_VERSION', '3.4.2');
to
define('QT_SUPPORTED_WP_VERSION', '3.5');
So it stops wining…2: In qtranslate_javascript.php
change:$q_config['js']['qtrans_xsplit'] = " String.prototype.xsplit = function(_regEx){
to
$q_config['js']['qtrans_xsplit'] = " var usr_sett_ed = getUserSetting( 'editor' ); if ( parseInt( getUserSetting( 'ed_size' ) ) < 300 ) { setUserSetting( 'ed_size', 300 ); } setUserSetting( 'editor', 'html' ); String.prototype.xsplit = function(_regEx){
And, change
var h = wpCookies.getHash('TinyMCE_content_size');
to
var h = getUserSetting( 'ed_size' );
Found this in two places:
https://www.ads-software.com/support/topic/plugin-works-under-35?replies=10
https://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=3831Forum: Reviews
In reply to: [qTranslate] So I updated my blog to 3.5…Hi, I found some workarounds that seems to fix it for good:
Check out this post: https://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=3831
Sorry, but I really don’t know why the’re incompatible. Maybe it’s because I used some features in my plugin that breaks “display widget”.
What comes in my mind is the function to add Facebook javascript to your site head…
Using the new Facebook API it’s not possible. Other plugins that don’t show this text are still using a deprecated Facebook Social API.
Forum: Plugins
In reply to: [Styled Facebook Like Box] [Plugin: Styled Facebook Like Box] won't customizeHy, thanks for the reply. The language it was showing was Brazilian Portuguese.
I just uploaded an update with a Language field!