Kkronos
Forum Replies Created
-
Forum: Plugins
In reply to: [Tab Override] [Plugin: Tab Override] problem issue tab override not workingThank you for your update!
I’ll try it asap and give you news!Forum: Plugins
In reply to: [Tab Override] [Plugin: Tab Override] problem issue tab override not workingI finally managed to get Tab override to work with qTranslate:
- in \wp-content\plugins\tab-override\includes\class-tab-override.php:
call jquery.taboverride-1.1.1.js instead of jquery.taboverride-1.1.1.min.js
call tab-override-setup-1.2.1.js insteadof tab-override-setup-1.2.1.min.js
This allow you to modify not minified js files. However, the next modification could be made in minify js files.- in \wp-content\plugins\tab-override\js\tab-override-setup-1.2.1.js:
replace #content by #qtrans_textarea_content
replace #qt_content_fullscreen by #qt_qtrans_textarea_content_fullscreen
replace- in \wp-content\plugins\tab-override\js\jquery.taboverride-1.1.1:
replace #qtrans_textarea_content by #textarea
Hope this can help some people!
Bye!Forum: Plugins
In reply to: [Tab Override] [Plugin: Tab Override] problem issue tab override not workingActually, the javascript called doesn’t matter because functions are bound to events, so the problem is not here.
Forum: Plugins
In reply to: [Tab Override] [Plugin: Tab Override] problem issue tab override not workingFirst of all:
- qTranslate replaces the default wordpress editing page to edit a post by another one with different ID.
- i modify Tab-Override javascript to have this one use the qtranslate editing page . This one was using the default content id from wordpress for post ie “textarea”. I replaced it by : “qtrans_textarea_content”.
After few more look around tab-override javascript, I discover than the javascript code from tab_override was called before the qTranslate php execution. In short:
- the editing post page from wordpress is loaded ( id : textarea)
- javascript is called
- the editing post page from qTranslate is loaded ( id : qtrans_textarea_content)
-
How call this javascript after the qTranslate php execution?
Forum: Plugins
In reply to: [Tab Override] [Plugin: Tab Override] problem issue tab override not workingI just find out that using the plugin qTranslate prevents Tab Override from working