Browse: Home / Snippets /

Collapse Focus Mode sidebar on window load

Contents


Snippet #

Important: All snippets are provided as-is without support or guarantees. These snippets are provided as guidelines for advanced users looking to customize LearnDash. For any additional help or support with these snippets, we recommend reaching out to a LearnDash Expert.

add_action( 'wp_footer', function() {
    ?>
    <script>
    jQuery(document).ready(function($) {
        $('.learndash-wrapper .ld-focus').addClass('ld-focus-sidebar-collapsed');
    });
    </script>
    <?php
}, 999 );

// Target specific browser sizes

add_action( 'wp_footer', function() {
    ?>
    <script>
        // You can specify and target specific device ranges below.
        if (jQuery(window).width() >= 640 && jQuery(window).width() <= 1024) {
            jQuery(document).ready(function($) {
                $('.learndash-wrapper .ld-focus').addClass('ld-focus-sidebar-collapsed');
            });
        }
    </script>
    <?php
}, 999 );