Joomla 2.5.8 で、「List All Categories」タイプを使用するメニュー項目を作成しました。次のように、親カテゴリの画像とタイトル、および各サブカテゴリの画像を表示したいと考えています。
-- 親カテゴリの画像 --
親カテゴリーのタイトル 親カテゴリーの説明
SubCategory1 タイトル Subcategory1 画像 -- SubCategory1 説明
SubCategory2 タイトル Subcategory2 画像 -- SubCategory2 説明
SubCategory3 タイトル Subcategory3 画像 -- SubCategory3 説明
SubCategory4 タイトル Subcategory4 画像 -- SubCategory4 説明
私はファイル template/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');
?>