• svenmuchow

    (@svenmuchow)


    Hey Y’all,
    I’ve just set up a new website and the admin bar was not showing when editing a page with elementor. Nothing has been done to he website yet by default it just wasn’t there. I tried adding `<?php wp_head(); ?>
    and <?php wp_footer(); ?>`, cleared the cache, my browser cookies etc.
    Finally got it to show although it looks slightly off with the page header by adding `function admin_bar(){

    if(is_user_logged_in()){
    add_filter( ‘show_admin_bar’, ‘__return_true’ , 1000 );
    }
    }
    add_action(‘init’, ‘admin_bar’ );`
    to functions.php but although it is visible now and shows dropdown menus i cannot click anything.

    I checked with my other website http://www.athlete-skill.com and the admin bar has disappeared there too. I recently upgraded from windows 10 32bits to 64 bits so that might be the cause?
    Any idea on how to get the admin bar to work now that it shows?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator t-p

    (@t-p)

    This may be a plugin or theme conflict. Please attempt to disable all plugins, and use one of the default (Twenty*) themes. If the problem goes away, enable them one by one to identify the source of your troubles.

    Thread Starter svenmuchow

    (@svenmuchow)

    Hey,
    I have tried that. Deactivated every plugin except for elementor, Switched themes, clear cache, looked on profile settings if admin Bar disabled.
    Admin bar also disappeared on my other website which had it before.
    I think I have tried every step in this thread https://stackoverflow.com/questions/21277190/wordpress-admin-bar-not-showing-on-frontend

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Admin Bar not usable/visible’ is closed to new replies.