• Hy,

    I have ACF PRO and polylang (not PRO) installed. In my functions.php I’ve added some WP admin option:

    function register_footer_options_pages() {
    
        // Check function exists.
        if( !function_exists('acf_add_options_page') )
            return;
    
        // register options page.
        $option_page = acf_add_options_page(array(
            'page_title'    => __('Footer Settings'),
            'menu_title'    => __('Footer Settings'),
            'menu_slug'     => 'footer-settings',
            'capability'    => 'edit_posts',
            'redirect'      => false
        ));
    }

    Which adds the new menu item and it works when I’m saving the strings.

    However, when looking via the admin panel that settings I can’t see where can I add the languages – https://ibb.co/cvgPSpd.

    The country flags are missing? Or am I doing something wrong.

    Am I missing some step for adding the translations?

    Thanks

    • This topic was modified 5 years, 3 months ago by adelivuk.
    • This topic was modified 5 years, 3 months ago by adelivuk.
Viewing 1 replies (of 1 total)
  • I too was confused at first, but discovered you have to use the polylang language choice dropdown in the admin bar at the top to switch languages. Instead of setting it at ‘All languages’, try setting it to a specific language. Then look at the options page and you’ll probably be able to set your options for that specific language.

Viewing 1 replies (of 1 total)
  • The topic ‘How to add different languages’ is closed to new replies.