-
AuthorPosts
-
June 21, 2012 at 1:23 pm #178376
Hello,
I have problem with layout on my site.
when I choose “Category Blog” on the “Menu Item Type” the template layout break.
for instance:http://trh.co.il/index.php?option=com_content&view=category&layout=blog&id=151&Itemid=966
or
http://trh.co.il/index.php?option=com_content&view=category&layout=blog&id=108&Itemid=924
Could someone please take a look for me please as I have to deliver this site so I need to sort this mess out.
Thanks in advance.
chavan Friend
chavan
- Join date:
- October 2014
- Posts:
- 4612
- Downloads:
- 0
- Uploads:
- 110
- Thanked:
- 1440 times in 1290 posts
June 21, 2012 at 4:04 pm #458372I have fixed the issue
please check and confirm http://trh.co.il/index.php?option=com_content&view=category&layout=blog&id=151&Itemid=966
/templates/ja_social/html/com_content/category/blog_item.php
I have made some changes with the code in this file: By paste in to your file this layout will be fixed
[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;
// Create a shortcut for params.
$params = &$this->item->params;
$images = json_decode(isset($this->item->images) ? $this->item->images : null);
$canEdit = $this->item->params->get(‘access-edit’);
JHtml::addIncludePath(JPATH_COMPONENT.’/helpers/html’);
JHtml::_(‘behavior.tooltip’);
JHtml::core();
?>
<?php if ($this->item->state == 0) : ?>
<div class=”system-unpublished”>
<?php endif; ?>
<?php if ($params->get(‘show_title’)) : ?>
<h2 class=”contentheading”>
<?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
<a href=”<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>”>
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
<?php endif; ?>
<?php if (!$params->get(‘show_intro’)) : ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>
<?php // to do not that elegant would be nice to group the params ?>
<div class=”ja-blog-tools clearfix”>
<?php echo $this->item->event->beforeDisplayContent; ?>
<?php if (($params->get(‘show_author’)) or ($params->get(‘show_category’)) or ($params->get(‘show_create_date’)) or ($params->get(‘show_modify_date’)) or ($params->get(‘show_publish_date’)) or ($params->get(‘show_parent_category’)) or ($params->get(‘show_hits’))) : ?>
<div class=”ja-blog-meta clearfix”>
<div class=”postdate-wrap”>
<?php if ($params->get(‘show_create_date’)) : ?>
<span class=”postdate clearfix”>
<?php $created = T3Hook::_(‘t3_date_format’, array($this->item->created, ‘cat.blog.created’));
if (!$created) $created = JHtml::_(‘date’, $this->item->created, JText::_(‘DATE_FORMAT_LC3’)) ?>
<?php
$createDay = date(‘d’, strtotime($this->item->created));
$createMonth = JText::_(strtoupper(date(‘F’, strtotime($this->item->created))).”_SHORT”);
$createYear = date(‘Y’, strtotime($this->item->created));
?>
<span class=”date”><?php echo $createDay; ?></span>
<span class=”month-year”>
<span class=”month”><?php echo $createMonth; ?></span>
<span class=”year”><?php echo $createYear; ?></span>
</span>
</span>
<?php endif; ?>
</div>
<div class=”cat-date”>
<?php if ($params->get(‘show_parent_category’) && $this->item->parent_id != 1) : ?>
<span class=”parent-category-name”>
<?php $title = $this->escape($this->item->parent_title);
$url = ‘<a href=”‘ . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id)) . ‘”>’ . $title . ‘</a>’; ?>
<?php if ($params->get(‘link_parent_category’)) : ?>
<?php echo JText::sprintf(‘COM_CONTENT_PARENT’, $url); ?>
<?php else : ?>
<?php echo JText::sprintf(‘COM_CONTENT_PARENT’, $title); ?>
<?php endif; ?>
</span>
<?php endif; ?>
<?php if ($params->get(‘show_category’)) : ?>
<span class=”category-name”>
<?php $title = $this->escape($this->item->category_title);
$url = ‘<a href=”‘ . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)) . ‘”>’ . $title . ‘</a>’; ?>
<?php if ($params->get(‘link_category’)) : ?>
<?php echo JText::sprintf(‘COM_CONTENT_CATEGORY’, $url); ?>
<?php else : ?>
<?php echo JText::sprintf(‘COM_CONTENT_CATEGORY’, $title); ?>
<?php endif; ?>
</span>
<?php endif; ?>
<?php if ($params->get(‘show_modify_date’)) : ?>
<span class=”modified”>
<?php echo JText::sprintf(‘COM_CONTENT_LAST_UPDATED’, JHtml::_(‘date’,$this->item->modified, JText::_(‘DATE_FORMAT_LC3’))); ?>
</span>
<?php endif; ?>
<?php if ($params->get(‘show_publish_date’)) : ?>
<span class=”published”>
<?php echo JText::sprintf(‘COM_CONTENT_PUBLISHED_DATE_ON’, JHtml::_(‘date’,$this->item->publish_up, JText::_(‘DATE_FORMAT_LC3’))); ?>
</span>
<?php endif; ?>
<?php if ($params->get(‘show_author’) && !empty($this->item->author)) : ?>
<span class=”createdby”>
<?php JText::printf(($this->item->created_by_alias ? $this->escape($this->item->created_by_alias) : $this->escape($this->item->author)) ); ?>
</span>
<?php endif; ?>
</div>
<div class=”blog-rate-hit”>
<?php if ($params->get(‘show_hits’)) : ?>
<span class=”hits”>
<?php echo JText::sprintf(‘COM_CONTENT_ARTICLE_HITS’, $this->item->hits); ?>
</span>
<?php endif; ?>
</div>
</div><?php endif; ?>
<?php if ($params->get(‘show_print_icon’) || $params->get(‘show_email_icon’) || $canEdit) : ?>
<ul class=”actions”>
<?php if ($params->get(‘show_print_icon’)) : ?>
<li class=”print-icon”>
<?php echo JHtml::_(‘icon.print_popup’, $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($params->get(‘show_email_icon’)) : ?>
<li class=”email-icon”>
<?php echo JHtml::_(‘icon.email’, $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($canEdit) : ?>
<li class=”edit-icon”>
<?php echo JHtml::_(‘icon.edit’, $this->item, $params); ?>
</li>
<?php endif; ?>
</ul>
<?php endif; ?>
</div>
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
<?php $imgfloat = (empty($images->float_intro)) ? $params->get(‘float_intro’) : $images->float_intro; ?>
<div class=”img-intro-<?php echo htmlspecialchars($imgfloat); ?>”>
<img
<?php if ($images->image_intro_caption):
echo ‘class=”caption”‘.’ title=”‘ .htmlspecialchars($images->image_intro_caption) .'”‘;
endif; ?>
src=”<?php echo htmlspecialchars($images->image_intro); ?>” alt=”<?php echo htmlspecialchars($images->image_intro_alt); ?>”/>
</div>
<?php endif; ?>
<?php echo $this->item->introtext; ?>
<?php if ($params->get(‘show_readmore’) && $this->item->readmore) :
if ($params->get(‘access-view’)) :
$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
else :
$menu = JFactory::getApplication()->getMenu();
$active = $menu->getActive();
$itemId = $active->id;
$link1 = JRoute::_(‘index.php?option=com_users&view=login&&Itemid=’ . $itemId);
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
$link = new JURI($link1);
$link->setVar(‘return’, base64_encode($returnURL));
endif;
?>
<p class=”readmore”>
<a href=”<?php echo $link; ?>”>
<?php if (!$params->get(‘access-view’)) :
echo JText::_(‘COM_CONTENT_REGISTER_TO_READ_MORE’);
elseif ($readmore = $this->item->alternative_readmore) :
echo $readmore;
if ($params->get(‘show_readmore_title’, 0) != 0) :
echo JHtml::_(‘string.truncate’, ($this->item->title), $params->get(‘readmore_limit’));
endif;
elseif ($params->get(‘show_readmore_title’, 0) == 0) :
echo JText::sprintf(‘COM_CONTENT_READ_MORE_TITLE’);
else :
echo JText::_(‘COM_CONTENT_READ_MORE’);
echo JHtml::_(‘string.truncate’, ($this->item->title), $params->get(‘readmore_limit’));
endif; ?></a>
</p>
<?php endif; ?>
<?php if ($this->item->state == 0) : ?>
</div>
<?php endif; ?>
<div class=”item-separator”></div>
<?php echo $this->item->event->afterDisplayContent; ?>
[/PHP]
Note: If you Find my Post useful please click on the Thanks Icon
1 user says Thank You to chavan for this useful post
-
AuthorPosts
This topic contains 3 replies, has 2 voices, and was last updated by mosheo 12 years, 7 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum