Polylang - remove specific languages from language switcher

I have a need to remove specific languages from the Polylang language switched that I don't want to remove or disable, and they're not the current language. There doesn't seem to be an easy way to do this in Polylang's settings

Topic plugin-polylang Wordpress

Category Web


Achieved this by using the 'Hide languages with no translation' option that's available on the language switcher in Appearance > Menus and probably in other places; and the pll_the_langauge_link hook to reset the URL. Here's an example that removes German and Polish from the language switcher:

add_filter( 'pll_the_language_link', 'remove_langs_from_switcher', 10, 3 );

function remove_langs_from_switcher( $url, $slug, $locale ) {

  if ($locale == "de" || $locale == "pl")
    $url = "";

  return $url;
}

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.