Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Dennis Ploetner

    (@realloc)

    Yes, this is a glitch with the language codes. Your language file is ca.mo or ca_ES.mo? This function in your functions.php should work:

    function get_my_flag_icon( $icon, $language ) {
    	if ( 'ca' == $language || 'ca_ES' == $language ) {
    		$icon = 'ca_ES.png';
    	}
    	return $icon;
    }
    add_filter( 'msls_options_get_flag_icon', 'get_my_flag_icon', 10, 2 );
    Thread Starter lvdl

    (@lvdl)

    This function really works!
    Thank you for your quick reply Denis, a profesional suport service!

    Plugin Author Dennis Ploetner

    (@realloc)

    OK, very good!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Canadian flag insted of Catalan’ is closed to new replies.