Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • betteryouthanme Friend
    #205949

    ..in single article view

    icon-chevron-left/icon-chevron-right is not displayed in Purity III.
    Guess it should be “glyphicon glyphicon-chevron-left” / “glyphicon glyphicon-chevron-right”


    1. aroo
    Ninja Lead Moderator
    #568947

    Both icons that are from bootstrap lib, you need to check it and make sure bootstrap lib is working on your site.


    1. Screen-Shot-2015-04-30-at-16.17.35
    betteryouthanme Friend
    #568948

    Now that’s what i’m talking about. The class in Purity III is definded as icon-chevron-left and not “glyphicon glyphicon-chevron-left”

    Where can I change that?


    1. icon
    Ninja Lead Moderator
    #568975

    <em>@betteryouthanme 471189 wrote:</em><blockquote>Now that’s what i’m talking about. The class in Purity III is definded as icon-chevron-left and not “glyphicon glyphicon-chevron-left”

    Where can I change that?</blockquote>

    I checked with Purity version 1.1.3 but I could not see icon-chevron-left and icon-chevron-right icons defined on that. You can pm me URL and admin login of your site. I will help you to check it further

    Ninja Lead Moderator
    #734066

    <em>@betteryouthanme 471189 wrote:</em><blockquote>Now that’s what i’m talking about. The class in Purity III is definded as icon-chevron-left and not “glyphicon glyphicon-chevron-left”

    Where can I change that?</blockquote>

    I checked with Purity version 1.1.3 but I could not see icon-chevron-left and icon-chevron-right icons defined on that. You can pm me URL and admin login of your site. I will help you to check it further

    betteryouthanme Friend
    #569072

    in your screenshot it appers you investigate the arrows of the bootstrap carousel, which works for me too.

    Could you please check the Next/Prev buttons at the end of a single article as in the screenshot attached?
    PM sent


    1. prevnext
    Ninja Lead Moderator
    #569259

    <em>@betteryouthanme 471365 wrote:</em><blockquote>in your screenshot it appers you investigate the arrows of the bootstrap carousel, which works for me too.

    Could you please check the Next/Prev buttons at the end of a single article as in the screenshot attached?
    PM sent</blockquote>

    I enabled Font Awesome to load directly on your site, now you can see it’s working on your site

    + Backend site

    + Front-end site


    1. Screen-Shot-2015-05-04-at-12.07.39
    2. Screen-Shot-2015-05-04-at-12.09.41
    betteryouthanme Friend
    #569389

    <em>@Ninja Lead 471663 wrote:</em><blockquote>I enabled Font Awesome to load directly on your site, now you can see it’s working on your site

    + Backend site

    + Front-end site

    </blockquote>

    Thanks!
    is that option activated by default? I try to avoid any legacy settings.

    betteryouthanme Friend
    #734478

    <em>@Ninja Lead 471663 wrote:</em><blockquote>I enabled Font Awesome to load directly on your site, now you can see it’s working on your site

    + Backend site

    + Front-end site

    </blockquote>

    Thanks!
    is that option activated by default? I try to avoid any legacy settings.

    Ninja Lead Moderator
    #569443

    Yes, legacy option supports by default, it will load Font Awesome lib and Bootstrap 2 and 3 on your site.

    Ninja Lead Moderator
    #734532

    Yes, legacy option supports by default, it will load Font Awesome lib and Bootstrap 2 and 3 on your site.

    betteryouthanme Friend
    #573946

    <em>@Ninja Lead 471895 wrote:</em><blockquote>Yes, legacy option supports by default, it will load Font Awesome lib and Bootstrap 2 and 3 on your site.</blockquote>

    To avoid legacy mode i’ve edited default.php as followed in plugins/content/pagenavigation/tmpl/default.php
    [PHP]
    <?php
    /**
    * @package Joomla.Plugin
    * @subpackage Content.pagenavigation
    *
    * @copyright Copyright (C) 2005 – 2015 Open Source Matters, Inc. All rights reserved.
    * @license GNU General Public License version 2 or later; see LICENSE.txt
    */

    defined(‘_JEXEC’) or die;

    $lang = JFactory::getLanguage(); ?>

    <ul class=”pager pagenav”>
    <?php if ($row->prev) :
    $direction = $lang->isRTL() ? ‘right’ : ‘left’; ?>
    <li class=”previous”>
    <a href=”<?php echo $row->prev; ?>” rel=”prev”>
    <?php echo ‘<i class=”glyphicon glyphicon-chevron-‘ . $direction . ‘”></i> ‘ . $row->prev_label; ?>
    </a>
    </li>
    <?php endif; ?>
    <?php if ($row->next) :
    $direction = $lang->isRTL() ? ‘left’ : ‘right’; ?>
    <li class=”next”>
    <a href=”<?php echo $row->next; ?>” rel=”next”>
    <?php echo $row->next_label . ‘ <i class=”glyphicon glyphicon-chevron-‘ . $direction . ‘”></i>’; ?>
    </a>
    </li>
    <?php endif; ?>
    </ul>

    [/PHP]

    Don’t know where to put it in the Purity III template folder (for overwrite feature) but maybe you can add it in the next version? Thanks

    betteryouthanme Friend
    #738960

    <em>@Ninja Lead 471895 wrote:</em><blockquote>Yes, legacy option supports by default, it will load Font Awesome lib and Bootstrap 2 and 3 on your site.</blockquote>

    To avoid legacy mode i’ve edited default.php as followed in plugins/content/pagenavigation/tmpl/default.php


    <?php
    /**
    * @package Joomla.Plugin
    * @subpackage Content.pagenavigation
    *
    * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
    * @license GNU General Public License version 2 or later; see LICENSE.txt
    */

    defined('_JEXEC') or die;

    $lang = JFactory::getLanguage(); ?>

    <ul class="pager pagenav">
    <?php if ($row->prev) :
    $direction = $lang->isRTL() ? 'right' : 'left'; ?>
    <li class="previous">
    <a href="<?php echo $row->prev; ?>" rel="prev">
    <?php echo '<i class="glyphicon glyphicon-chevron-' . $direction . '"></i> ' . $row->prev_label; ?>
    </a>
    </li>
    <?php endif; ?>
    <?php if ($row->next) :
    $direction = $lang->isRTL() ? 'left' : 'right'; ?>
    <li class="next">
    <a href="<?php echo $row->next; ?>" rel="next">
    <?php echo $row->next_label . ' <i class="glyphicon glyphicon-chevron-' . $direction . '"></i>'; ?>
    </a>
    </li>
    <?php endif; ?>
    </ul>

    Don’t know where to put it in the Purity III template folder (for overwrite feature) but maybe you can add it in the next version? Thanks

    Ninja Lead Moderator
    #573995

    The legacy option is supported to load Font Awesome lib and Bootstrap 2 and 3 and this is best way to run with css class from Font Awesome lib.

    As I said before that, Purity III template does not add css class into source code in template. You only find and see glyphicon glyphicon-chevron class from demo content from Slideshow (custom html module)


    <!-- Controls -->
    <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
    <span class="glyphicon glyphicon-chevron-left"></span>
    </a>
    <a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
    <span class="glyphicon glyphicon-chevron-right"></span>
    </a>

    I’m afraid we won’t do any updates related to this in the future.

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

This topic contains 14 replies, has 2 voices, and was last updated by  betteryouthanme 9 years, 5 months ago.

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