Viewing 15 posts - 1 through 15 (of 17 total)
  • Author
    Posts
  • dpchap015 Friend
    #192154

    hi …. i am using ja magz 2.x on my localhost , while using this i ma facing some measure problems

    1. quickstart does not contain the language pack

    2. there are different layout available for the articles like for photos and videos but there is no option to select the layout from these.>:(

    3. article not showing the published date / it always shows …….time ago ( 2 months ago)

    4.in videos and photos article layout there is no side bar.>:(

    fix n update ASAP

    Ninja Lead Moderator
    #512126

    There are my answer with your concert

    1. quickstart does not contain the language pack

    Yes, As the language translation in demo site are for demo content and would be of no use to users, as they will need to translate their content again anyways.You can check the multilingual component for setting up translations here

    2. there are different layout available for the articles like for photos and videos but there is no option to select the layout from these.

    In this template you can select Content Type only. Gallery, Video, Text are not supported, its a custom override in this template.

    3. article not showing the published date / it always shows …….time ago ( 2 months ago)

    I have tested several time but I could not find the problem as you mention. You can check it on our demo again: http://joomla-templates.joomlart.com/ja_magz/index.php/en/ Let me know if you see the problem

    4.in videos and photos article layout there is no side bar.

    I’m confused about this one. Please add a screenshot with illustration so that i understand your issue clearly.

    dpchap015 Friend
    #512207

    no sidebar-1 and 2 module position in the video and photos article layout

    3. article not showing the published date / it always shows …….time ago ( 2 months ago)

    I have tested several time but I could not find the problem as you mention. You can check it on our demo again: http://joomla-templates.joomlart.com…/index.php/en/ Let me know if you see the problem

    see this i need date formate like 18dec 2011
    not this
    http://awesomescreenshot.com/0641yivcf6

    xxxvinixxx Friend
    #512256

    I have since the publication of the material indicates the time four hours. Brad.: ((

    Ninja Lead Moderator
    #512423

    <blockquote>no sidebar-1 and 2 module position in the video and photos article layout</blockquote>
    Because video and photos are setting with JA Magz Template no sidebar and you can set it to JA Magz default, see the screenshot

    <blockquote>3. article not showing the published date / it always shows …….time ago ( 2 months ago)</blockquote>

    My way will help you to change format date

    Open templates/ja_magz/html/com_content/article/default_related_item.php file

    Line 116:

    From

    <span><?php echo MagzHelper::relTime($this->ritem->publish_up); ?></span>

    Change to

    <span><?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC3'))); ?> </span>

    Line 122:

    <span><?php echo MagzHelper::relTime($this->ritem->created); ?></span>

    change to

    <span><?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC3'))); ?></span>


    1. Layout_setting
    dpchap015 Friend
    #512540

    @ninja Lead
    i tried it. but there is no change, and after changing the single article page not picking the css

    Ninja Lead Moderator
    #512583

    <em>@dpchap015 398315 wrote:</em><blockquote>@Ninja Lead
    i tried it. but there is no change, and after changing the single article page not picking the css</blockquote>

    Your site is using featured article of com_content and I did fix it directly on your on this: templates/ja_magz/html/com_content/featured/default_item.php file

    Please check it again, let me know it helps

    dpchap015 Friend
    #512593

    in which line u changed it??
    what about the other layouts.. like reviews layout.

    and the major issue of images? (duplicate images)

    Ninja Lead Moderator
    #512790

    <em>@dpchap015 398375 wrote:</em><blockquote>in which line u changed it??
    what about the other layouts.. like reviews layout.

    and the major issue of images? (duplicate images)</blockquote>
    @dpchap015: We have customized featured article layout of com_content match with the concept of JA Magz template. I see all images are included inside articles, see the screenshot

    You have to edit all images include inside articles to Images and links tabs. But I did help you to fix this problem on your iste. This is my solution to do that

    Open /templates/ja_magz/html/com_content/featured/default_item.php file

    From

    if ($params->get('link_titles') && $params->get('access-view')) {
    $link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
    }

    Change to

    if ($params->get('link_titles') && $params->get('access-view')) {
    $link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
    }

    //get images
    $regex = '#<img[^>]*>#';
    $image_introtext = '';
    if (preg_match ($regex,$this->item->introtext, $matches)) {
    $image_introtext = $matches[0];
    $this->item->introtext = str_replace ($image_introtext, '', $this->item->introtext);
    //print_r($this->item->introtext);
    }

    Please check link of your site again: http://test.eduvative.in/etr_test_2/

    Hope it helps


    1. article_images
    dpchap015 Friend
    #512797

    @ninja Lead why articles not showing introtext in featured and blog layouts??????????????
    + article dates in bloglaouyt http://test.eduvative.in/etr_test_2/news

    duplicate images in all bloglayout
    see this
    http://test.eduvative.in/etr_test_2/reviews

    Ninja Lead Moderator
    #512891

    I did check this fix here and it work on both the php files below

    <blockquote>/templates/ja_magz/html/com_content/category/blog_item.php
    /templates/ja_magz/html/com_content/category/magz_item.php</blockquote>

    If you want to change more intro text in JA Magz Template

    But the best way is that you change <image title=”” atl=””> inside articles to Images and links tabs

    I confirmed again this is not bug from our product and you must change articles on your site.


    1. Article
    dpchap015 Friend
    #513095

    <em>@Ninja Lead 398147 wrote:</em><blockquote>Because video and photos are setting with JA Magz Template no sidebar and you can set it to JA Magz default, see the screenshot

    @ninja Lead

    if i remove the sidebar template from the video and photos menu. and assign the deafult template.
    then it will shows the sidebar on the media blog layout only(photos and videos). there is no sidebar in the single article of photos and videos.
    how to add sidebar position in it. like other articles

    Ninja Lead Moderator
    #513250

    I tried to read of your request several time but I could not get it. It would be great if you can include url of your site, an illustrated screenshot of what you are trying to achieve

    dpchap015 Friend
    #513260

    hi,,, ninja lead i need a side bar module positions in the single article of video and gallary .content type

    see this> http://awesomescreenshot.com/0f91zz4gfd
    and this > http://awesomescreenshot.com/0c41zz4lc3

    and for the readmore the default limit is 200 as given in the template options.
    but the issue is some article shows intro text and some are not.see this http://awesomescreenshot.com/0d91zz563f
    and if i increase the read more limit from template options then it will messup the layout.
    so i changed the /templates/ja_magz/html/com_content/category/blog_item.php
    [PHP]<?php/* echo JHtml::_(‘string.truncate’, $introtext, $tplparams->get(‘tpl_introtext_limit’, 200));*/ ?>
    <?php echo $this->item->introtext; ?>[/PHP]

    how can i define the character limit here because now it will pick the articles readmore limit.

    Ninja Lead Moderator
    #513409

    <blockquote>
    see this> http://awesomescreenshot.com/0f91zz4gfd
    and this > http://awesomescreenshot.com/0c41zz4lc3
    </blockquote>

    Thanks for request but this is more of customization request for video and gallary .content type and customization support is out of JA support scope. You should hire a developer to carry out such work


    and for the readmore the default limit is 200 as given in the template options.
    but the issue is some article shows intro text and some are not.see this http://awesomescreenshot.com/0d91zz563f
    and if i increase the read more limit from template options then it will messup the layout.
    so i changed the /templates/ja_magz/html/com_content/category/blog_item.php

    I have suggested the solution to you here, this is not bug from our product, my post before will only help to rid the image included within articles but the best way you need to change from article on your site

Viewing 15 posts - 1 through 15 (of 17 total)

This topic contains 17 replies, has 3 voices, and was last updated by  dpchap015 10 years, 9 months ago.

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