funkjedi
Forum Replies Created
-
Forum: Plugins
In reply to: [ACF qTranslate] ACF PRO Error when I public postFixed in the latest release.
https://github.com/funkjedi/acf-qtranslate/issues/32Forum: Plugins
In reply to: [ACF qTranslate] qTranslate text field and standard ACF text fieldStarting with the 1.7.7 release the standard ACF text fields are no longer automatically multilingual. If you want this behaviour you need to enable on the settings page.
Forum: Plugins
In reply to: [ACF qTranslate] ACF qTranslate and qtranslate plusYou need to use fields from the qTranslate Field Types when setting up your custom fields in ACF.
Forum: Plugins
In reply to: [ACF qTranslate] conflict with google drive media plaginsThis should now be working correctly with the latest release.
Forum: Plugins
In reply to: [ACF qTranslate] Error with ACF qtranslate 1.7.5 and Category Taxonomy EditorFixed in latest release.
Forum: Plugins
In reply to: [ACF qTranslate] New version (1.7.3) brokes some wordpress fuctionsMedia Library bug with the grid view is now fixed in the latest release.
Forum: Plugins
In reply to: [ACF qTranslate] Unable to edit widgets with latest ACF qTranslate activeClosing.
Forum: Plugins
In reply to: [qTranslate X] get custom field in specific languageThis should do what you’re looking for.
function qtrans_get_field($name, $lang = null) { global $q_config; // no language specified return in the // current language if ($lang === null) { return get_field($name); } // switch to given language $orig = $q_config['language']; $q_config['language'] = $lang; // retrive field value $value = get_field($name); // switch back to the original language $q_config['language'] = $orig; return $value; }
Forum: Plugins
In reply to: [ACF qTranslate] language switcher for custom fieldsIf your ACF fields are using the qTranslate field types then you can add this to your functions.php and the switch controls will show up above the fields as well.
add_action('admin_footer', 'qtranslatex_add_switcher_controls'); function qtranslatex_add_switcher_controls() { ?> <style> .multi-language-field {margin-top:-38px!important;} .multi-language-field .wp-switch-editor[data-language] {display:block!important;} </style> <?php }
Forum: Plugins
In reply to: [ACF qTranslate] New version (1.7.3) brokes some wordpress fuctionsWhat screen are you on in the WordPress backend when you get the error?
Forum: Plugins
In reply to: [ACF qTranslate] latest update causes errors and website to stopTry update to the latest version. Based on the code you’ve posted it looks like you’re still using version 1.4.
Forum: Plugins
In reply to: [ACF qTranslate] ACF Flexible Content & qTranslate X not workingWhat version of ACF are you using and what variant of qTranslate are you using (i.e. qTranslate-X, qTranslate Plus, etc)?
Forum: Plugins
In reply to: [ACF qTranslate] Visual editor not working with ACF 5.1.7.1This should be resolved in the latest version. Please update and let me know if you’re still experiencing any issues.
Forum: Plugins
In reply to: [ACF qTranslate] ACF qTranslate and qtranslate plusNo problem. Let me know if you come across any other issues with ACF qTranslate and qTranslate Plus.
Forum: Plugins
In reply to: [ACF qTranslate] Image field not workingProper support for both the Image and File fields in ACF5PRO was added in a recent release.