Wpml in header mobile

Hi, I would like to add the WPML switcher (only flags) to the Header in Mobile view. How can I do that? Many thanks!

Hi,

You can try add new code PHP to child theme:

function hara_short_code_wpml()
{
   echo do_shortcode( '[wpml_language_selector_widget]' );
}
add_action('hara_after_header_mobile', 'hara_short_code_wpml', 10);