From sooperthemes forum:

All translated menu items (using i18n_menu) are displayed resulting in duplicate menu items.

Solution:

In themes/artica/arctica/preprocess/preprocess-page.inc on line 26, change:

$tree = menu_tree($pid);

with:

if (module_exists('i18n_menu')) {
  $tree = i18n_menu_translated_tree($pid);
}
else {
  $tree = menu_tree($pid);
}

Can this solution be committed?

Thak you very much

Comments

JurriaanRoelofs’s picture

Thanks, I'm going to commit this to the 2.x branch that will be released soon.

lolandese’s picture

It's not in 2.0-beta1. If you are using i18n_menu (part of i18n), apply it manually for now. The line to replace is still number 26.

MXT’s picture

Version: 7.x-1.3 » 7.x-2.x-dev
Status: Active » Reviewed & tested by the community
JurriaanRoelofs’s picture

Assigned: Unassigned » JurriaanRoelofs
Status: Reviewed & tested by the community » Fixed

fixed in dev

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.