Remove Staff Social Options
add_filter( 'wpex_staff_social_array', function( $profiles ) {
unset( $profiles['dribbble'] ); // Remove Dribble
unset( $profiles['skype'] ); // Remove Skype
return $profiles;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)