-
AuthorPosts
-
August 10, 2010 at 11:07 pm #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
Khanh Le ModeratorKhanh Le
- Join date:
- November 2013
- Posts:
- 1884
- Downloads:
- 41
- Uploads:
- 31
- Thanks:
- 44
- Thanked:
- 203 times in 131 posts
August 12, 2010 at 6:58 am #352419Please try the latest version of both template & t3v2 plugin which have just been released.
August 18, 2010 at 9:34 pm #353096That worked!
AuthorPostsViewing 3 posts - 1 through 3 (of 3 total)This topic contains 3 replies, has 2 voices, and was last updated by lo30sopa6 14 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Error(s) on frontpage with template v1.1.3 in Joomla 1.5.20. And how I fixed it.
Viewing 3 posts - 1 through 3 (of 3 total)