Home › Forums › ACF PRO › WPML, ACF 5.0.9 and Options Page › Reply To: WPML, ACF 5.0.9 and Options Page
I agree there has to be a setting for this. I think it should check if that field is actually translated in the options group settings. If so, the way it works now is good. If not, it should always fall back to the original language.
Quick fix for people that need it working now:
Add this just before your get_field() function, where ‘en’ is your default language. Call the filter again with the current language to reset it again, so it wont affect pages and stuff.
// add this
add_filter('acf/settings/current_language',function() {
global $sitepress;
return $sitepress->get_default_language();
});
// this is already in your code
$my_field = get_field('my_field', 'option');
// reset to original language
add_filter('acf/settings/current_language',function() {
return ICL_LANGUAGE_CODE;
});
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.