Tagged Questions
0
votes
0answers
15 views
Odd behaviour caused by $wpdb->last_result and language switching
This has me scratching my head. The following code is called on two pages:
http://example.com/somepage/
http://example.com/fr/somepage/
class SomeClass {
function __construct(){
global ...
3
votes
1answer
533 views
Change admin language based on user (in single-site)
I'm trying to make a small plugin to install in some sites of a german client.
I can make my way around WordPress in german, but would be easier if it was in english.
There's a plugin that manages ...
1
vote
1answer
372 views
Why load_textdomain work but not load_plugin_textdomain?
In my plugin's init function
load_textdomain( 'myplugin', ABS_PATH_TO_MO_FILE ); // OK
load_plugin_textdomain( 'myplugin', false, ABS_PATH_TO_LANGS_DIR); // No effect
echo( __('Test', ...
0
votes
2answers
2k views
WPML Plugin Not displaying multilingual Menus
I'm using WordPress 3.0 Menus, which the WPML (wordpress multilingual) plugin claims to have added support for in a recent release. I am using the most current version of the plugin.
My problem is ...