The thing is that I found a lot article on the internet that briefs like this,
- check footer.php for
<?php wp_footer(); ?>
- check header.php for
<?php wp_head(); ?>
- check function.php for
function my_function_admin_bar() {
return false;
}
add_filter('show_admin_bar', 'my_function_admin_bar');
- Check if in user profile show toolbar ticked on.
I checked all of that and everything is fine and in order. It seems it creating a white space before the header but it is actually not showing up with quick access buttons on the frontend.
N.B: Previously it was displaying the admin bar but all of a sudden it just disappeared.
Please help to fix this...