• Is this plugin compatible with ACF? I tried to translate ACF fields to different languages but still no luck, there is no option on right sidebar to translate the field groups.

Viewing 1 replies (of 1 total)
  • Thread Starter Mohammad Ridwanullah

    (@readonecc)

    Solved by adding this code:

    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;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Integration with ACF’ is closed to new replies.