在Joomla 2.5.8中,我创建了一个使用“List All Categories”类型的菜单项。我想要显示父类别的图像和标题以及每个子类别的图像,如下所示:
- 父类别图像 -
父类别标题 父类别描述
SubCategory1标题 子类别1图像 - 子类别1描述
SubCategory2标题 子类别2图像 - 子类别2描述
SubCategory3标题 子类别3图像 - 子类别3描述
SubCategory4标题 子类别4图像 - 子类别4说明
我正在使用文件模板/ html / com_content / categories / default.php,我尝试从blog.php文件中复制代码:
<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
<?php endif; ?>
但它会破坏页面并加载空白页面。子类别的标题及其描述显示,我只是缺少父标题和图像。
在菜单项的选项中,我将类别标题,描述和图像全部设置为显示。
对此的任何帮助将不胜感激。
这里是deafault.php代码:
<?php
/**
* @package Joomla.Site
* @subpackage com_content
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die;
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
?>
<?php if ($this->params->get('show_page_heading')) : ?>
<h1>
<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php if ($this->params->get('show_base_description')) : ?>
<?php //If there is a description in the menu parameters use that; ?>
<?php if($this->params->get('categories_description')) : ?>
<?php echo JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_content.categories'); ?>
<?php else: ?>
<?php //Otherwise get one from the database if it exists. ?>
<?php if ($this->parent->description) : ?>
<div class="category-desc">
<?php echo JHtml::_('content.prepare', $this->parent->description, '', 'com_content.categories'); ?>
</div>
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>
<?php
echo $this->loadTemplate('items');
?>
答案 0 :(得分:1)
答案在这里:http://forum.joomla.org/viewtopic.php?p=2613555
显示图像的代码,如果类别有图像,是否 选择“显示类别图像”(Joomla 2.5,它应该适用于1.7 太)。
对于父类别,在 模板/ MyTemplate的/ HTML / com_content /类别/如default.php
<?php if ($this->params->get('show_description_image') && $this->parent->getParams()->get('image')) : ?>
<img src="<?php echo $this->parent->getParams()->get('image'); ?>" alt=" "/>
<?php endif; ?>
对于子类别,在 模板/ MyTemplate的/ HTML / com_content /类别/ default_items.php
<?php if ($this->params->get ('show_description_image') && $item->getParams()->get('image')) :?>
<img src="<?php echo $item->getParams()->get('image');?>" alt=" "/>
<?php endif; ?>
答案 1 :(得分:0)
这是Joomla 3.x版本的解决方案。它适用于类别和子类别。 模板/ MyTemplate的/ HTML / com_content /类别/ default_items.php
uid