Change WordPress user roles and capabilities › Forums › How to or FAQ › Settings to show WP admin Bar on Front End › Reply To: Settings to show WP admin Bar on Front End
19/02/2020 at 14:18
#6637
Vladimir
Keymaster
Read this article. Look if it’s related to your task and code below may help you:
add_filter('woocommerce_disable_admin_bar', '_wc_disable_admin_bar', 10, 1);
function _wc_disable_admin_bar($prevent_admin_access) {
return false;
}