Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • winbelltrade Friend
    #730393

    In the middle of the template there is a “down arrow” that when you click it the categories will expand to show more category list. When you click on the “up arrow” it will contract to hide some categories. I want to remove this function of expanding and contracting the listing entirely so I will have one long list of categories displaying all the time. I have tried some options but it did not work well.
    I have attached a screenshot of what I wanted. Please any help.

    TomC Moderator
    #747117

    Is this issue occurring on a particular browser? I ask because when I brought up your site on FireFox, those arrows (within the first image you attached) do not display. :confused:

    jooservices Friend
    #747118

    Hi there
    Try with this css

    To remove nav butons

    .t3-section .k2CategoriesListBlock #arrow-down {
    background: url("/templates/ja_directory/images/ico/arrow-down.png") no-repeat 50% 50%;
    height: 19px;
    cursor: pointer;
    display:none;
    }

    .t3-section .k2CategoriesListBlock #arrow-down.arrow-up {
    background-image: url("/templates/ja_directory/images/ico/arrow-up.png");
    display:none;
    }

    To display “hidden” elements

    .t3-wrapper .t3-section .k2CategoriesListBlock .level0 > li.collapse {
    display: block;
    max-height: auto;
    overflow: hidden;
    -webkit-transition: max-height 0.3s;
    -o-transition: max-height 0.3s;
    transition: max-height 0.3s;
    }

    Apply to custom.css

    http://www.t3-framework.org/documentation/customization.html
    <blockquote>T3 Framework is developed with LESS, the LESS files are compiled to CSS files. Each time you compile, CSS files will be overridden so we suggest you not to use CSS to customize, develop your site because when you compile, your work can be lost.</blockquote>
    <blockquote>
    The custom.css file is located in: templates/t3_blank/css . If you don’t see the file, create new file then open that file to add CSS to style for your template.</blockquote>

    Replace t3_blank by your current template directory ja_directory

    I also suggest you check out these than you can manage your issue in seconds without nobody in future.

    – Browser debugger tool
    – CSS priority

    https://developer.tizen.org/dev-guide/web/2.3.0/org.tizen.mobile.web.appprogramming/html/guide/w3c_guide/dom_guide/html_priorities_css.htm

    Thank you,
    Viet Vu

    winbelltrade Friend
    #747723

    Sorry for the late reply. The issue occurs with every browser. I tried to change the arrow image in the template directory but it did not solve the problem that is why you did not see it. But I have reinstated it as it was originally. I think that after removing the images (arrow up and arrow down) something else need to be done to have all the listing display automatically without page break. Fixing that is what I request help with.

    jooservices Friend
    #747785

    Hi there
    Please clearly your issue in detail or provide screenshot with noted.

    Thank you,
    Viet Vu

    Ninja Lead Moderator
    #747815

    <em>@winbelltrade 489894 wrote:</em><blockquote>In the middle of the template there is a “down arrow” that when you click it the categories will expand to show more category list. When you click on the “up arrow” it will contract to hide some categories. I want to remove this function of expanding and contracting the listing entirely so I will have one long list of categories displaying all the time. I have tried some options but it did not work well.
    I have attached a screenshot of what I wanted. Please any help.</blockquote>

    This way will help you to do that

    Open templates/ja_directory/html/mod_k2_tools/customcategories.php file

    find and change


    if (($option == 'com_k2') && ($view == 'itemlist') && ($catid == $row->id))
    {
    $liClass = 'activeCategory';
    if ($i >= 4) {
    $liClass .= 'collapse';
    }
    }
    else
    {
    $liClass = '';

    if ($i >= 4) {
    $liClass .= 'collapse';
    }
    }

    to

    if (($option == 'com_k2') && ($view == 'itemlist') && ($catid == $row->id))
    {
    $liClass = 'activeCategory';
    if ($i >= 4) {
    $liClass .= 'collapse';
    }
    }
    else
    {
    $liClass = '';

    if ($i >= 4) {
    $liClass .= 'collapse in';
    }
    }

    and find and remove all script below


    <script type="text/javascript">
    (function($){
    $(document).ready(function(){
    $( "#arrow-down" ).click(function() {
    if ($('.k2CategoriesListBlock .collapse.in').length) {
    $('.k2CategoriesListBlock .collapse.in').removeClass('in');
    } else {
    $('.k2CategoriesListBlock .collapse').addClass('in');
    }

    if($( "#arrow-down.arrow-down" ).length) {
    $( "#arrow-down").removeClass('arrow-down');
    $( "#arrow-down").addClass('arrow-up');
    } else {
    $( "#arrow-down").addClass('arrow-down');
    $( "#arrow-down").removeClass('arrow-up');
    }
    });
    });
    })(jQuery);
    </script>

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

This topic contains 6 replies, has 4 voices, and was last updated by  Ninja Lead 9 years, 1 month ago.

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