Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • lo30sopa6 Developer
    #153338

    After installing the blank template in Joomla! 1.5.20 I got multiple errors on the frontpage. See attached screenshot for more information.

    • The T3 framework plugin that was installed was T3 framework II v1.1.3 (plg_system_jat3.v1.1.3.zip).
    • The installed blank template ja_t3_blank.v1.1.3

    I fixed it by editing default_item.php

    in ….pluginssystemjat3base-themesdefaulthtmlcom_contentfrontpagedefault_item.php

    The fix:

    Go to line 86 (or somewhere in that neighbourhood) and replace

    <?php if ($this->item->params->get('show_pdf_icon') || $this->item->params->get('show_print_icon') || $this->item->params->get('show_email_icon')) : ?>
    <ul class="actions">
    <?php if (!$this->print) : ?>
    <?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; ?>
    <?php else : ?>
    <li>
    <?php echo JHTML::_('icon.print_screen', $this->article, $this->params, $this->access); ?>
    </li>
    <?php endif; ?>
    </ul>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_url') && $this->item->urls) : ?>
    <span class="article-url">
    <a href="http://<?php echo $this->escape($this->item->urls) ; ?>" target="_blank"><?php echo $this->escape($this->item->urls); ?></a>
    </span>
    <?php endif; ?>

    with

    <?php if ($this->item->params->get('show_pdf_icon') || $this->item->params->get('show_print_icon') || $this->item->params->get('show_email_icon')) : ?>
    <div class="buttonheading">
    <?php if ($this->item->params->get('show_email_icon')) : ?>
    <span>
    <?php echo JHTML::_('icon.email', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>

    <?php if ( $this->item->params->get( 'show_print_icon' )) : ?>
    <span>
    <?php echo JHTML::_('icon.print_popup', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_pdf_icon')) : ?>
    <span>
    <?php echo JHTML::_('icon.pdf', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_url') && $this->item->urls) : ?>
    <span class="article-url">
    <a href="http://<?php echo $this->escape($this->item->urls) ; ?>" target="_blank"><?php echo $this->escape($this->item->urls); ?></a>
    </span>
    <?php endif; ?>

    This worked for me but I would appreciate it if this bug can fixed in the next update 🙂

    Greetz,
    Steve


    1. joomla-frontpage-error
    Khanh Le Moderator
    #352419

    Please try the latest version of both template & t3v2 plugin which have just been released.

    lo30sopa6 Developer
    #353096

    That worked!

Viewing 3 posts - 1 through 3 (of 3 total)

This topic contains 3 replies, has 2 voices, and was last updated by  lo30sopa6 13 years, 8 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum