将主菜单添加到 Joomla 1.6 模板
我尝试从 Joomla 1.6 CMS 安装一些免费模板。 我下载的每个模板(以及每个教程)都无法在左侧站点上显示主菜单。
index.php 文件中有以下几行:
<?php if($this->countModules('left')) : ?>
<div id="sidebar" class="grid_<?php echo $leftcolgrid;?>">
<jdoc:include type="modules" name="left"style="xhtml" />
</div>
<?php endif; ?>
How can i set up to show the Main-Menu on the left site for Joomla 1.6?
I tried to install some free Template from the Joomla 1.6 CMS.
Every Template (and every tutorial) i downloaded cannot show the main Menu on the left site.
There are this Lines in index.php file:
<?php if($this->countModules('left')) : ?>
<div id="sidebar" class="grid_<?php echo $leftcolgrid;?>">
<jdoc:include type="modules" name="left"style="xhtml" />
</div>
<?php endif; ?>
How can i set up to show the Main-Menu on the left site for Joomla 1.6?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 1.6 没有太多经验,但在 1.5 中 PHP 代码确实与它无关。这完全取决于您放置包含主菜单的模块的位置。
所以这样做:
在 firebug 中检查的另一件事(如果你没有它,得到它。它几乎是一个标准。)但要确保在 fire bug 中你的 div#sidebar 正在显示,如果没有,那么你的 if 语句有问题。
希望这有帮助。
I do not have much experience in 1.6 but in 1.5 the PHP code has really nothing to do with it. it all depends on where you positioned the module that contains the main menu.
so do this:
Another thing to check in firebug(if you don't have it, get it. it's almost a standard.) but make sure in fire bug that your div#sidebar is showing up, if not then there is a problem with your if statement.
Hope this helps.