2016-04-20 77 views

回答

0

一般來說,每個模板都包含一些位置,首先檢查模板中可用位置

轉到系統>全局配置>模板
從這裏啓用該選項預覽模塊位置

現在,如果你去擴展>模板
您可以在小眼睛圖標,點擊或添加您的網址是這樣的:?

  • yoursite.com/ TP = 1

現在你可以去擴展>模塊>您的模塊,這裏選擇您所選擇的位置

0

如果您需要創建新的位置(而不是在當前模板中定義),你必須編輯/templates/template_name/index.php並添加jdoc:include語句,你需要:

<jdoc:include type="modules" name="new-position" style="xhtml" /> 

然後編輯/templates/template_name/templateDetails.xml添加位置:

<positions> 
    ... 
    <position>new-position</position> 
    ... 
</positions> 

在一些模板,位置不能在index.php文件,在這種情況下,尋找其他文件,它定義(在/template/template_name/文件夾或子目錄總是)模板佈局。

還考慮問問Joomla相關問題關於joomla.stackexchange.com獲得較好的答案!

相關問題