Thread Starter
mix359
(@mix359)
An other little thing:
In restrict-backend-access.php there’s a little error.
add_action( ‘show_admin_bar’, ‘uf_maybe_remove_admin_bar’ );
show_admin_bar it’s a filter, not an action 😉
so it should be:
add_filter( ‘show_admin_bar’, ‘uf_maybe_remove_admin_bar’ );
byez
Thread Starter
mix359
(@mix359)
Thanks for the awnser.
Cannot you put a setting to disable? (or something in the code like an hook that can be removed from an other file)
Thanks!