InspireeBook - Disable Collapsable menu

how to disable collapsing left menu?
I would like it to be uncollapsed all the time…

Option for that would be great!

Cheers!

Hello Mihail,

You can add the following code in your functions.php file,

function rtp_remove_custom_hooks() {   
    remove_filter( 'wp_nav_menu_items', 'rtp_collapse_menu' );  
}  

add_action( 'init', 'rtp_remove_custom_hooks' );

Also, thanks for a good suggestion, we can add this option in the next release.

Works like charm! Thank you!