2013-08-30 35 views
0

我想刪除首頁上的文章,所以我刪除了所有精選文章,但我已經爲該文章應用了填充值。因此,即使沒有特色文章,這也顯示在首頁的空間。如果有功能,如果有文章,那麼只能以其他方式顯示不能。刪除首頁joomla中的文章2.5

比如我們可以做

<?php if ($this->countModules('position-12')): ?> 
<div id="top"><jdoc:include type="modules" name="position-12" /> 
</div> 
<?php endif; ?> 

我怎麼能與IF函數此包:

<jdoc:include type="message" /> 
<jdoc:include type="component" /> 
+0

你試過將填充到子元素呢? – Lodder

+0

我需要給#top或邊距#top填充。 –

回答

0
<?php if (JRequest::getVar('view') != 'frontpage'): ?> 
    <jdoc:include type="message" /> 
    <jdoc:include type="component" /> 
<?php endif; ?> 
+0

謝謝你的回答。但它不起作用。我認爲在'joomla2.5'中刪除了'frontpage',這應該是'精選'之類的東西。 –