Viewing 1 replies (of 1 total)
  • Hi lightwood,

    Hope you’re doing well today ??

    Looks like WordPress is adding some CSS to show only certain icons in admin bar on smaller screens.

    Add this code to your child theme functions.php file or mu-plugin should do the trick:

    function show_custom_admin_menu() {
        echo '
        <style type="text/css">
            #wp-admin-bar-wdcab_root {
                display: block!important;
            }
        </style>';
    }
    // on backend area
    add_action( 'admin_head', 'show_custom_admin_menu' );
    // on frontend area
    add_action( 'wp_head', 'show_custom_admin_menu' );

    Cheers,
    Predrag

Viewing 1 replies (of 1 total)
  • The topic ‘Things on admin bar is not showing on mobile version’ is closed to new replies.