Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created October 20, 2020 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/6f39b5f74724b40ae699135da3db2bf2 to your computer and use it in GitHub Desktop.
Save plugin-republic/6f39b5f74724b40ae699135da3db2bf2 to your computer and use it in GitHub Desktop.
Display notice to user if their account is pending
<?php
/**
* Display notice to user if their account is pending
*/
function prefix_check_user_role() {
if( wc_current_user_has_role( 'pending' ) ) {
wc_add_notice(
'Your account is still pending',
'notice'
);
}
}
add_action( 'init', 'prefix_check_user_role' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment