Home › Forums › General Issues › ACF and Polylang languages not shown › Reply To: ACF and Polylang languages not shown
Hi @pureweb
I believe you should add ACF as the post type that needs to be translated. You should be able to do it like this:
add_filter('pll_get_post_types', 'unset_cpt_pll', 10, 2);
function unset_cpt_pll( $post_types, $is_settings ) {
$post_types['acf'] = 'acf';
return $post_types;
}
For further information, kindly get in touch with Polylang support.
I hope this helps 🙂
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.