Viewing 15 posts - 16 through 30 (of 32 total)
  • Author
    Posts
  • crew Friend
    #387825

    I change in a blog_item.php of the section, (part of the blog_item.php in category after u’r changes

    <?php if ($this->item->params->get(‘show_create_date’)) : ?>
    <dd class=”create”>
    <?php /*
    $created = T3Hook::_(‘t3_date_format’, array($this->item->created, ‘frontpage.created’));
    if (!$created) $created = JHTML::_(‘date’, $this->item->created, JText::_(‘DATE_FORMAT_LC2’)) */ ?>
    <!– Date created –>
    <?php
    $createDay = date(‘d’, strtotime($this->item->created));
    $createMonth = JText::_(strtoupper(date(‘F’, strtotime($this->item->created))).”_SHORT”);
    //$createYear = date(‘Y’, strtotime( $created));
    ?>
    <span class=”date”><?php echo $createDay; ?></span>
    <span class=”month”><?php echo $createMonth; ?></span>
    <!– <span class=”year”><?php echo $createYear; ?></span> –>
    </dd>
    <?php endif; ?>

    and now, all it’s ok.

    Thanks a lot

    andrzejmarek Friend
    #387831

    Thank you very much. But I have difficulties to find this file. My problem concern mod_jasidenews :-[

    thangnn1510 Friend
    #387900

    <em>@andrzejmarek 236090 wrote:</em><blockquote>Thank you very much. But I have difficulties to find this file. My problem concern mod_jasidenews :-[</blockquote>

    Could you submit the login information (FTP/admin account) to your support ticket RAB-335-77783. I’ll check this issue for you.

    tana896 Friend
    #390768

    Hi,

    We do have same problem but it is not solved with the template.zip file you get in this thread.

    In our case we have a Spanish site and the problem arise in the featured articles in the frontpage. After applying the files from the zip file the problem persists. Perhaps the solution was not for joomla 1.6 but for 1.5.

    Could you provide for a solution for our issue?

    Thank you in advance.

    chrixo Friend
    #390826

    Yes, we have the same problem for Italian (Joomla 1.6) :((

    zro1 Friend
    #391974

    We have the same problem with the date, at joomla 1.6.3

    informaticam2 Friend
    #392143

    I have the same problem too in joomla 1.6 and language spanish

    zro1 Friend
    #392332

    what I have to do, to get help?

    pingsthsd Friend
    #392363

    Is there a fix in the pipeline, have the same problem in 1.6 and swedish?

    thangnn1510 Friend
    #392551

    <blockquote>I change in a blog_item.php of the section, (part of the blog_item.php in category after u’r changes

    <?php if ($this->item->params->get(‘show_create_date’)) : ?>
    <dd class=”create”>
    <?php /*
    $created = T3Hook::_(‘t3_date_format’, array($this->item->created, ‘frontpage.created’));
    if (!$created) $created = JHTML::_(‘date’, $this->item->created, JText::_(‘DATE_FORMAT_LC2’)) */ ?>
    <!– Date created –>
    <?php
    $createDay = date(‘d’, strtotime($this->item->created));
    $createMonth = JText::_(strtoupper(date(‘F’, strtotime($this->item->created))).”_SHORT”);
    //$createYear = date(‘Y’, strtotime( $created));
    ?>
    <span class=”date”><?php echo $createDay; ?></span>
    <span class=”month”><?php echo $createMonth; ?></span>
    <!– <span class=”year”><?php echo $createYear; ?></span> –>
    </dd>
    <?php endif; ?>

    and now, all it’s ok.

    Thanks a lot </blockquote>

    Did you try this? We are testing again and will release new version in about 2 days.

    informaticam2 Friend
    #392692

    <em>@thangnn1510 242168 wrote:</em><blockquote>Did you try this? We are testing again and will release new version in about 2 days.</blockquote>
    It’s OK! I make it with Joomla 1.6 with spanish translation and works great!
    Thanks for all.:laugh:

    zro1 Friend
    #392704

    <em>@thangnn1510 242168 wrote:</em><blockquote>Did you try this? We are testing again and will release new version in about 2 days.</blockquote>

    Yes, I tried it with 1.6.3 (german)… Sorry, it doesn´t work… See my code of my blog_item.php

    [PHP]<?php
    /**
    * @version $Id: blog_item.php 17855 2010-06-23 17:46:38Z eddieajau $
    * @package Joomla.Site
    * @subpackage com_content
    * @copyright Copyright (C) 2005 – 2010 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;
    $canEdit = $this->user->authorise(‘core.edit’, ‘com_content.category.’ . $this->item->id);
    ?>
    <div class=”contentpaneopen <?php if ($this->item->params->get(‘show_create_date’)) : ?> hascreatedate <?php endif; ?>”>
    <?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=”article-tools clearfix”>
    <?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’))) : ?>
    <dl class=”article-info”>
    <?php endif; ?>
    <?php if ($params->get(‘show_parent_category’)) : ?>
    <dd 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; ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_category’)) : ?>
    <dd 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; ?>
    </dd>
    <?php endif; ?>
    <?php if ($this->item->params->get(‘show_create_date’)) : ?>
    <dd class=”create”>
    <?php /*
    $created = T3Hook::_(‘t3_date_format’, array($this->item->created, ‘frontpage.created’));
    if (!$created) $created = JHTML::_(‘date’, $this->item->created, JText::_(‘DATE_FORMAT_LC2’)) */ ?>
    <!– Date created –>
    <?php
    $createDay = date(‘d’, strtotime($this->item->created));
    $createMonth = JText::_(strtoupper(date(‘F’, strtotime($this->item->created))).”_SHORT”);
    //$createYear = date(‘Y’, strtotime( $created));
    ?>
    <span class=”date”><?php echo $createDay; ?></span>
    <span class=”month”><?php echo $createMonth; ?></span>
    <!– <span class=”year”><?php echo $createYear; ?></span> –>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_modify_date’)) : ?>
    <dd class=”modified”>
    <?php echo JText::sprintf(‘COM_CONTENT_LAST_UPDATED’, JHTML::_(‘date’,$this->item->modified, JText::_(‘DATE_FORMAT_LC2’))); ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_publish_date’)) : ?>
    <dd class=”published”>
    <?php echo JText::sprintf(‘COM_CONTENT_PUBLISHED_DATE’, JHTML::_(‘date’,$this->item->publish_up, JText::_(‘DATE_FORMAT_LC2’))); ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_author’) && !empty($this->item->author)) : ?>
    <dd class=”createdby”>
    <?php $author = $this->item->author; ?>
    <?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

    <?php if (!empty($this->item->contactid ) && $params->get(‘link_author’) == true):?>
    <?php echo JText::sprintf(‘COM_CONTENT_WRITTEN_BY’ ,
    JHTML::_(‘link’,JRoute::_(‘index.php?option=com_contact&view=contact&id=’.$this->item->contactid),$author)); ?>

    <?php else :?>
    <?php echo JText::sprintf(‘COM_CONTENT_WRITTEN_BY’, $author); ?>
    <?php endif; ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_hits’)) : ?>
    <dd class=”hits”>
    <?php echo JText::sprintf(‘COM_CONTENT_ARTICLE_HITS’, $this->item->hits); ?>
    </dd>
    <?php endif; ?>

    <?php echo $this->item->event->afterDisplayContent; ?>
    <?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’))) :?>
    </dl>
    <?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 echo $this->item->introtext; ?>
    <?php echo $this->item->event->beforeDisplayContent; ?>
    <?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));
    $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>
    </div>[/PHP]

    thangnn1510 Friend
    #392750

    <em>@zro1 242351 wrote:</em><blockquote>Yes, I tried it with 1.6.3 (german)… Sorry, it doesn´t work… See my code of my blog_item.php

    [PHP]<?php
    /**
    * @version $Id: blog_item.php 17855 2010-06-23 17:46:38Z eddieajau $
    * @package Joomla.Site
    * @subpackage com_content
    * @copyright Copyright (C) 2005 – 2010 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;
    $canEdit = $this->user->authorise(‘core.edit’, ‘com_content.category.’ . $this->item->id);
    ?>
    <div class=”contentpaneopen <?php if ($this->item->params->get(‘show_create_date’)) : ?> hascreatedate <?php endif; ?>”>
    <?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=”article-tools clearfix”>
    <?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’))) : ?>
    <dl class=”article-info”>
    <?php endif; ?>
    <?php if ($params->get(‘show_parent_category’)) : ?>
    <dd 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; ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_category’)) : ?>
    <dd 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; ?>
    </dd>
    <?php endif; ?>
    <?php if ($this->item->params->get(‘show_create_date’)) : ?>
    <dd class=”create”>
    <?php /*
    $created = T3Hook::_(‘t3_date_format’, array($this->item->created, ‘frontpage.created’));
    if (!$created) $created = JHTML::_(‘date’, $this->item->created, JText::_(‘DATE_FORMAT_LC2’)) */ ?>
    <!– Date created –>
    <?php
    $createDay = date(‘d’, strtotime($this->item->created));
    $createMonth = JText::_(strtoupper(date(‘F’, strtotime($this->item->created))).”_SHORT”);
    //$createYear = date(‘Y’, strtotime( $created));
    ?>
    <span class=”date”><?php echo $createDay; ?></span>
    <span class=”month”><?php echo $createMonth; ?></span>
    <!– <span class=”year”><?php echo $createYear; ?></span> –>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_modify_date’)) : ?>
    <dd class=”modified”>
    <?php echo JText::sprintf(‘COM_CONTENT_LAST_UPDATED’, JHTML::_(‘date’,$this->item->modified, JText::_(‘DATE_FORMAT_LC2’))); ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_publish_date’)) : ?>
    <dd class=”published”>
    <?php echo JText::sprintf(‘COM_CONTENT_PUBLISHED_DATE’, JHTML::_(‘date’,$this->item->publish_up, JText::_(‘DATE_FORMAT_LC2’))); ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_author’) && !empty($this->item->author)) : ?>
    <dd class=”createdby”>
    <?php $author = $this->item->author; ?>
    <?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

    <?php if (!empty($this->item->contactid ) && $params->get(‘link_author’) == true):?>
    <?php echo JText::sprintf(‘COM_CONTENT_WRITTEN_BY’ ,
    JHTML::_(‘link’,JRoute::_(‘index.php?option=com_contact&view=contact&id=’.$this->item->contactid),$author)); ?>

    <?php else :?>
    <?php echo JText::sprintf(‘COM_CONTENT_WRITTEN_BY’, $author); ?>
    <?php endif; ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_hits’)) : ?>
    <dd class=”hits”>
    <?php echo JText::sprintf(‘COM_CONTENT_ARTICLE_HITS’, $this->item->hits); ?>
    </dd>
    <?php endif; ?>

    <?php echo $this->item->event->afterDisplayContent; ?>
    <?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’))) :?>
    </dl>
    <?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 echo $this->item->introtext; ?>
    <?php echo $this->item->event->beforeDisplayContent; ?>
    <?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));
    $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>
    </div>[/PHP]</blockquote>

    Could you send me via PM the login information FTP/admin account. I’ll check for you.

    zro1 Friend
    #392851

    @thangnn1510
    Thx a lot…

    After der Update.. ist works now…

    There is just only one problem with “ja side nwes”… see my other posting…

    chrixo Friend
    #393009

    Perfect, I’ve just updated to Ja-Methys 1.1.0 from http://www.joomlart.com/forums/downloads.php?do=cat&id=20407

    and now all works well.

    Best thanks 🙂

Viewing 15 posts - 16 through 30 (of 32 total)

This topic contains 32 replies, has 14 voices, and was last updated by  tronsdal 13 years, 4 months ago.

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