2012-07-27 59 views

回答

0

在的Joomla 2.5做到以下幾點:

<?php 
$app = JFactory::getApplication(); 
$menu = $app->getMenu(); 
if ($menu->getActive() == $menu->getDefault()) { 
    echo 'This is the front page'; 
} 
?> 

它變得有點複雜,多語種網站。它在Joomla documentation中有充分的描述。

0

如果我理解你的問題,可以通過從管理控制面板創建一個新的HTML模塊並在其中插入HTML代碼輕鬆實現。

如何創建自定義HTML模塊:http://www.joomlatutorials.com/joomla-tips-and-tricks/38-joomla-website-management/102-create-a-custom-html-joomla-module.html

然後你就可以輕鬆地設置您的模塊是可見的(菜單分配選項「在除選擇的所有網頁」和你家的菜單項選擇),而無需破解你的模板。

相關問題