They write that polylang compatible with acf , but adding an acf field acf nowhere to check or to select a language.
I have many fields, but now there is a question about multilingualism. All records and pages can be created in the required languages, but adding the acf field acf not have this option.
|
1 answer
In functions.php add:
add_filter('pll_get_post_types', 'fixwp_add_acf_pll', 10, 2); function fixwp_add_acf_pll( $post_types, $is_settings ) { $post_types[] = 'acf'; return $post_types; } In the Polylang settings in the Synchronization section there should not be a checkmark in the Custom fields
|