我设法在yootheme joomla 2.5中删除首页中的内容部分(内页仍保留),经过几个帖子和教程后,我将以下内容添加到代码中:
<?php
$menu = & JSite::getMenu();
if($menu->getActive() !== $menu->getDefault()) :
?>
<jdoc:include type="component" />
<?php endif; ?>
在被攻击的代码之后,内容块被成功删除了首页文章,但是该块仍然显示为空白框,但我在后端尝试将系统输出设置选为NO,但内容块无法从前页和内页显示,我怎么能完全踢掉前面的空白框?
请告知&amp;谢谢!
答案 0 :(得分:1)
使用joomla控制台的模块部分关闭此主题中的块,如果要删除带有文本气泡的默认首页徽标,这也在模块中,但可以在yootheme模板配置中关闭,也可以从你的joomla控制台访问。
答案 1 :(得分:0)
这是工作:
<?php
$menu = & JSite::getMenu();
if($menu->getActive() !== $menu->getDefault()) :
?>
<?php if ($this['config']->get('system_output')) : ?>
<section id="content" class="grid-block">
<?php if ($this['modules']->count('breadcrumbs')) : ?>
<?php echo $this['modules']->render('breadcrumbs'); ?>
<?php endif; ?>
<?php echo $this['template'] >render('content'); ?>
</section>
<?php endif; ?>
<?php endif; ?>