I just installed Premium Responsive. All goes well except that there seems to be an incompatibility with the Internationalization module. The main menu does not change with the language, as it should. I'm using Drupal 7.14 and I18n version 7.x-1.x-dev.

It works fine with other themes, such as Garland.

Thanks
Tom

Comments

devsaran’s picture

Status: Active » Closed (fixed)

You need to do code changes in page.tpl.php .. Change the Menu render code in page.tpl.php to

<?php
        if (module_exists('i18n')) {
            $main_menu_tree = i18n_menu_translated_tree(variable_get('menu_main_links_source', 'main-menu'));
          } else {
          $main_menu_tree = menu_tree(variable_get('menu_main_links_source', 'main-menu'));
        }
       print drupal_render($main_menu_tree);
    
?>