0

我正在使用国际化块进行西班牙语和英语之间的基本页面翻译。默认情况下,内容是西班牙语。当我将语言更改为英语时,页面内容被翻译,但是自动导航显示为空白。我已经使用页面 CID 来确定语言差异。在我的主题的 header.php 文件中,我使用了以下语句:

if(!$c->getAttribute('english_menus')) {
$lh = Loader::helper('section', 'multilingual');
$lang = $lh->getLanguage();
$bt = BlockType::getByHandle('autonav');
$bt->controller->displayPages = 'custom';
if ($lang == "en_EN"){
  $bt->controller->displayPagesCID = 166; //English section cID
} else {
  $bt->controller->displayPagesCID = 171; //Spanish section cID
}
$bt->controller->orderBy = 'display_asc';
$bt->render('templates/top_nav/view');
}

这将显示顶级导航正常。however when the country flag is selected the auto nav menu disappears and does not display in english

非常感谢

4

1 回答 1

0

你的意思是拥有

if (! $c->getAttribute('english_menus')) {

在顶部?

这对我来说没有多大意义。您的英文页面(或您在国旗后登陆的任何页面)是否有可能将该属性设置为某些东西?

于 2013-03-08T17:06:53.590 回答