How to add different languages
-
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
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to add different languages’ is closed to new replies.