Admin Bar Missing
Open includes/hooks.php and remove :
add_action('show_admin_bar', '__return_false');
Terence (Buyer) commented
OK, yes this works now.
Adding back into functions.php is not necessary as long as you stop the function in hooks from blocking it.
I am going to experiment so that I don’t lose it when you update the theme.
// Added later
FWIW it cannot be prevented from disabling the admin bar by disabling the disable in child-theme/includes/hooks.php
But it can be controlled by the tick box in your WP profile.
So now I am not sure what the point is to disable it in hooks.php in the first place?
try to add this in functions.php:
add_action('show_admin_bar', '__return_true');
Terence (Buyer) commented
Nope. Cleared cache, logged out and back in, and checked my profile, its still not showing up
I thought it could be to do with a missing or misplaced “wp_footer();” in footer.php, but I checked and its there OK.