Hi,
I just installed your plugin and had Gengo installed before. It was producing an error and wordpress was totally jammed. I tracked the error down to an incorrect initialization of the loading of the textdomain. I found a solution here:
http://jamietalbot.com/wp-hacks/forum/c … Comment_31
You only have to replace line 32 in index.php
[code:3ijunrzv]load_plugin_textdomain (‘pixopoint_mln’, "/wp-content/plugins/multi-level-navigation-plugin/languages/");[/code:3ijunrzv]
with
[code:3ijunrzv]function my_init() {
load_plugin_textdomain (‘pixopoint_mln’, "/wp-content/plugins/multi-level-navigation-plugin/languages/");
}
add_action(‘init’, ‘my_init’);[/code:3ijunrzv]
Could you fix this in the next release?
Thanks a lot
Hanjo