Info
- 2 posts
- 1 voice
- Started 1 year ago by Ashfame
- Latest reply from Ashfame
- This topic is not resolved
Couldn't get Locale filter to work
-
- Posted 1 year ago #
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 inbb-includes/functions.bb-l10n.php -
- Posted 1 year ago #
Anyone has any idea or ever done something similar?
-
You must log in to post.