Skip to content

Instantly share code, notes, and snippets.

@woogist
Created May 13, 2015 10:57
Show Gist options
  • Save woogist/f45fda1df35133bb0b06 to your computer and use it in GitHub Desktop.
Save woogist/f45fda1df35133bb0b06 to your computer and use it in GitHub Desktop.
function wc_allow_subscriber_admin_access( $prevent ) {
$user = get_userdata( get_current_user_id() );
$role = $user->roles[0];
if ( $role == 'subscriber' ) {
return false;
}
return $prevent;
}
add_filter( 'woocommerce_prevent_admin_access', 'wc_allow_subscriber_admin_access' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment