Il problema è in questa parte di codice, vengono chiamate le sezioni che sul 1.7 non esistono.
<?php
if (
($this->params->get('show_create_date'))
|| (($this->params->get('show_author')) && ($this->article->author != ""))
|| (($this->params->get('show_section') && $this->article->sectionid) || ($this->params->get('show_category') && $this->article->catid))
|| ($this->params->get('show_pdf_icon') || $this->params->get('show_print_icon') || $this->params->get('show_email_icon'))
|| ($this->params->get('show_url') && $this->article->urls)
) :
?>
<div class="article-tools clearfix">
<dl class="article-info">
<?php if ($this->params->get('show_create_date')) : ?>
<dd class="createdate">
<?php echo JHTML::_('date', $this->article->created, JText::_('DATE_FORMAT_LC1')); ?>
</dd>
<?php endif; ?>
<?php if (($this->params->get('show_author')) && ($this->article->author != "")) : ?>
<dd class="createdby">
<?php JText::printf('Written by', ($this->article->created_by_alias ? $this->escape($this->article->created_by_alias) : $this->escape($this->article->author))); ?>
</dd>
<?php endif; ?>
<?php if (($this->params->get('show_section') && $this->article->sectionid) || ($this->params->get('show_category') && $this->article->catid)) : ?>
<?php if ($this->params->get('show_section') && $this->article->sectionid && isset($this->article->section)) : ?>
<dd class="section">
<strong><?php echo JText::_('SECTION'); ?>: </strong>
<?php if ($this->params->get('link_section')) : ?>
<?php echo '<a href="'.JRoute::_(ContentHelperRoute::getSectionRoute($this->article->sectionid)).'">'; ?>
<?php endif; ?>
<?php echo $this->escape($this->item->section); ?>
<?php if ($this->params->get('link_section')) : ?>
<?php echo '[/url]'; ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php if ($this->params->get('show_category') && $this->article->catid) : ?>
<dd class="category">
<strong><?php echo JText::_('CATEGORY'); ?>: </strong>
<?php if ($this->params->get('link_category')) : ?>
<?php echo '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->article->catslug, $this->article->sectionid)).'">'; ?>
<?php endif; ?>
<?php echo $this->escape($this->article->category); ?>
<?php if ($this->params->get('link_category')) : ?>
<?php echo '[/url]'; ?>
<?php endif; ?>
</dd>
<?php endif; ?>
<?php endif; ?>
</dl>
<?php if ($this->params->get('show_pdf_icon') || $this->params->get('show_print_icon') || $this->params->get('show_email_icon')) : ?>
<ul class="buttonheading">
<?php if ($this->params->get('show_email_icon')) : ?>
<li class="email-icon">
<?php echo JHTML::_('icon.email', $this->article, $this->params, $this->access); ?>
</li>
<?php endif; ?>
<?php if ( $this->params->get( 'show_print_icon' )) : ?>
<li class="print-icon">
<?php echo JHTML::_('icon.print_popup', $this->article, $this->params, $this->access); ?>
</li>
<?php endif; ?>
<?php if ($this->params->get('show_pdf_icon')) : ?>
<li>
<?php echo JHTML::_('icon.pdf', $this->article, $this->params, $this->access); ?>
</li>
<?php endif; ?>
</ul>
<?php endif; ?>
<>
<?php endif; ?>
Qual'è nell'1.7 la versione corretta per conoscere i dati delle categorie?
$this->params->get('show_category')
$this->article->catid
ecc..
??