alexandrosc2
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate Plus] How translate Categories and filtersThis plugin (qtranslate slug) allows you to translate the name and slug of taxonomies.
It displays text fields for every language in e.g. Categories. There you can add the name and the slug of each category on every language you have enabled from the core plugin (qtranslate plus).
I don’t understand the term Filter though. What do you mean by “Filter”?Forum: Plugins
In reply to: [qTranslate Plus] From qTranslate to qTranslate PlusIf you only used qtranslate and didn`t do any hacks or references to qtrans methods in your theme you don’t need to do something more than installing the new plugin deactivate the old and activate the new one.
Plugins that need qtranslate to work (e.g: qtranslate slug) will not work with the new plugin as they reference qtrans methods. For these kind of plugins you need to make some changes.Forum: Plugins
In reply to: [qTranslate Plus] Can't change content in secondary language tabThe new update solved the problem of the tab change so i think this tread should be marked as resolved ??
Forum: Plugins
In reply to: [qTranslate Plus] How translate Categories and filtersCheck line 262 to be like this
(!is_plugin_active(‘qtranslate-xp/ppqtranslate.php’) &&in the file you mentioned niwin
the directory is not qtranslate but qtranslate-xp. This might be your problemForum: Plugins
In reply to: [qTranslate Plus] Can't change content in secondary language tabbe aware of the change… You need to replace the += with = not only ‘test’ values. I am just pointint that out. You need to replace the two lines not only the ‘test’. I hope it helps
Forum: Plugins
In reply to: [qTranslate Plus] Lang button in post content are KOYou might wanna look at this thread
Forum: Plugins
In reply to: [qTranslate Plus] How translate Categories and filtersFor the old qtranslate i used qtranslate slug plugin. I still use it but i had to modify it to fit the new plugin (You need some coding skills). You can try it to. It worked fine for me. You mostly have to change the core that references the old plugin functions named qtrans_ to the new plugin function names ppqtrans_
Forum: Plugins
In reply to: [qTranslate Plus] WYSIWYG TabsYou might wanna look at this thread
Forum: Plugins
In reply to: [qTranslate Plus] Can't change content in secondary language tabBefore i change those lines (417-418) i tried to comment them out but it broke. I even deleted them but it still breaks if i remove them… It only works for me if i replace them with the ones i gave before.
Forum: Plugins
In reply to: [qTranslate Plus] Can't change content in secondary language tabI think i solved the problem… I don’t know if this is the right solution but in file qtranslate-xp/ppqtranslate_javascript.php just before the end of the file there are two lines:
document.getElementById(‘ppqtrans_select_’+ppqtrans_get_active_language()).className+=’test’;
document.getElementById(‘ppqtrans_select_’+lang).className+=’test’;I replaced them with these two
document.getElementById(‘ppqtrans_select_’+ppqtrans_get_active_language()).className=’wp-switch-editor’;
document.getElementById(‘ppqtrans_select_’+lang).className=’wp-switch-editor switch-tmce switch-html’;It now seems to work as before the update
Forum: Plugins
In reply to: [qTranslate Plus] Can't change content in secondary language tabI have the same problem. The ppqtrans_get_active_language() in qtranslate-xp/ppqtranslate_javascript.php give an undefined result when a tab is clicked. Please advise