"Tabs" Accordion Display on Mobile

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • #19425
    wensolutions
    Keymaster

    Hello

    Thank you for your co-operations so far. It really means a lot to us 🙂

    We have been inspecting the issue in your side and it is under the fixing process by the designer. We apologize for the your inconvenience. We will get back to you with a precise fix as soon as possible.

    Hoping for your kind co-operations.

    Best Regards!

    #19431
    Sakuna
    Participant

    Hey @support:

    Super awesome. Thanks so much as usual!

    #19437
    Support Team
    Keymaster

    Hello

    Please replace the code previously given,

    jQuery( document ).ready(function($){
            if (window.innerWidth <= 768 ){
               $('.resp-tab-content').css('display', 'none')
            }
    });

    with the below given code :

    jQuery( document ).ready(function($){
        if (window.innerWidth <= 768 ){
           $('.resp-tab-content').css('display', 'none')
           $('.resp-accordion').removeClass('resp-tab-active');
        }
    });

    Please verify if this code helps. If the issue still persist, feel free to write back to us.

    Regards!

    #19439
    Sakuna
    Participant

    @support:

    Your team rocks! That snippet worked in multiple tests, so I will roll with it!

    Thanks again so much. 🙂

    #19442
    Support Team
    Keymaster

    Hello

    Glad that the snippet worked.

    For any further query/confusion, feel free to reach back to us.

    Best Regards!

Viewing 5 posts - 16 through 20 (of 20 total)
  • The forum ‘WP Travel’ is closed to new topics and replies.