Forums

Join
bbPress Support ForumsTroubleshootingCouldn't get Locale filter to work

Info

Tags

Couldn't get Locale filter to work

  1. Don't know what seems to be the problem.
    I am trying to have a non-english language on the front side by keeping the admin panel in English only.
    I defined the BB_LANG in config file and now I can't get the filter to work.

    add_filter('locale', 'bb_language_switcher_filter');
    
    function bb_language_switcher_filter( $locale )
    {
    	if ( bb_is_admin() )
    		$locale = 'en_US';
    	return $locale;
    }

    Even this doesn't work

    add_filter('locale', 'bb_language_switcher_filter');
    
    function bb_language_switcher_filter( $locale )
    {
    	$locale = 'en_US';
    	return $locale;
    }

    So I guess I am doing something wrong here.

    The filter is in bb_get_locale() located at line 41 in bb-includes/functions.bb-l10n.php

  2. Anyone has any idea or ever done something similar?

  3. You must log in to post.