Tim Robertson
Tim Robertson
@limingxinleo not sure if you resolved this yet but i had the same issue. fix for me was to force the version of `php-common` being installed. if i didn't it...
Fixed in 1.7.15.
How are you including ACF in your theme? Also where are you including (i.e. are you including it from within the `init` action, etc...)?
The latest release addresses these issues.
Which qTranslate plugin are you using and which version of ACF are you using?
I'll be pushing out a 5.6 compatible version either tonight or tomorrow.
Just pushed out update with compatibility fixes. You should see it in your update feed shortly.
Just release an update with fixes for the File and Image fields.
Nice catch. I've pushed up another version that will maintain compatibility.
You could try adding something like this to your `functions.php`. ```php remove_all_actions('acf/format_value'); add_action('acf/format_value', function(){ if (is_string($value)) { $value = qtranxf_useCurrentLanguageIfNotFoundShowEmpty($value); } return $value; }); ```