我正在建立我的第一个joomla网站我被困在这里 - 当我在我的模板index.php中包含。
<jdoc:include type="component" />
它在我的前端显示Home。找不到需要帮助的解决方案。
答案 0 :(得分:1)
创建自定义Html模块frontcomp并仅在主页上显示它而不在其中写入任何内容。 然后在index.php(模板)中添加以下内容
<?php if($this->countModules('frontcomp')) : ?>
<jdoc:include type="modules" name="frontcomp" style="xhtml" />
<?php endif; ?>
<?php if(!$this->countModules('frontcomp')) : ?>
<jdoc:include type="message" />
<jdoc:include type="component" />
<?php endif; ?>