• Resolved Mickey

    (@sachin0414)


    Hello there,
    I need help with your Advanced Tabs Widget

    Is there any way to hide all the tabs as a default behaviour and to be opened only after a click.

    Any code snippet to fix this would be great.

Viewing 1 replies (of 1 total)
  • Plugin Support Nahid Hasan

    (@tushar284)

    Hi @sachin0414,

    Hope you’re doing well. Unfortunately, the feature isn’t currently available. But you can try with below code snippet.

    (function($){
    $(document).ready(function() {
        setTimeout(function(){
            $(document).find('#eael-advance-tabs-cc34547 .eael-tabs-nav li.active').removeClass('active').addClass('inactive');
            $(document).find('#eael-advance-tabs-cc34547 .eael-tabs-content div.active').removeClass('active').addClass('inactive');
        }, 100);
    });
    })(jQuery);

    Please make sure to replace this id #eael-advance-tabs-cc34547 with yours one. You’ll get it here: https://d.pr/i/YZlphL

    You can easily apply custom JS by following this documentation: https://essential-addons.com/elementor/docs/custom-js/

    Have a nice day!

Viewing 1 replies (of 1 total)
  • The topic ‘Advanced Tabs change default behaviour to Hide’ is closed to new replies.