I have made a quick fix by commenting out the last line of classes/em-people.php
//add_filter( 'user_contactmethods' , array('EM_People','user_contactmethods'),10,1);
Does anyone know a way i can do this without editing the EM core files?
Sorry thats not quite what i’m after. I’m editing the layout of the Edit User page in the wp-admin.
I have managed to hide/disable a few of the standard wordpress fields (AIM etc) but i can’t get rid of the “Phone (Events Manager)” field.
For now, i’ve altered class-wp-users-list-table.php at line 61
//if ( isset( $_REQUEST['orderby'] ) )
$args['orderby'] = 'id';//$_REQUEST['orderby'];
//if ( isset( $_REQUEST['order'] ) )
$args['order'] = 'desc';//$_REQUEST['order'];
Its a dirty hack, but serving it’s purpose for now. I’d still like to know a better way around it if anyone can help.