Skip to content

Instantly share code, notes, and snippets.

@manuelhudec
Created June 1, 2021 18:54
Show Gist options
  • Select an option

  • Save manuelhudec/46b6d2529cbe6f1fdd5be282f2670bb0 to your computer and use it in GitHub Desktop.

Select an option

Save manuelhudec/46b6d2529cbe6f1fdd5be282f2670bb0 to your computer and use it in GitHub Desktop.
Client-Portal WP Plugin - Admin and store customers also as customer portal role
function my_leco_cp_client_roles( $roles ) {
$roles = array_merge( $roles, array( 'administrator', 'customer' ) );
return $roles;
}
add_filter( 'leco_cp_client_roles', 'my_leco_cp_client_roles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment