PoshWaffle
11/9/2017 - 8:48 PM

Unset BB UI menu items. Add this to your child theme's functions.php file.

Unset BB UI menu items. Add this to your child theme's functions.php file. (2.0) Unset BB UI menu items.php

add_filter( 'fl_builder_main_menu', function( $views ) {

    unset( $views['main']['items'][100]); // Admin Menu Item
    unset( $views['main']['items'][120]); // Keyboard Shortcuts Item

    return $views;
});