Admin Bar not usable/visible
-
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]
The topic ‘Admin Bar not usable/visible’ is closed to new replies.