hi,
i can set the menus for different languages, but i see the wrong submenus (submenus from other languages).
Csaba
Hi, I solved the problem adding this lines (+) to yuimenu.module:
function get_html_menu_script ($menu_id) { $output .='
+if(module_exists('i18nmenu')) { + i18nmenu_localize_tree($menu); + }
You can use this post as a reference: http://drupal.org/node/300628
Thank you relayer3000. I added you code into yuimenu.
Automatically closed -- issue fixed for 2 weeks with no activity.
Comments
Comment #1
relayer3000 commentedHi, I solved the problem adding this lines (+) to yuimenu.module:
function get_html_menu_script ($menu_id) {
$output .='
';
$menu = load_menu($menu_id);
+if(module_exists('i18nmenu')) {
+ i18nmenu_localize_tree($menu);
+ }
You can use this post as a reference: http://drupal.org/node/300628
Comment #2
bakyildiz commentedThank you relayer3000. I added you code into yuimenu.