WordPress file edits
–Header.php–
Comment out
–functions.php–
Comment Out
//add_action( ‘show_user_profile’, ‘esplanade_show_extra_profile_fields’ );
//add_action( ‘edit_user_profile’, ‘esplanade_show_extra_profile_fields’ );
add in at end:
function add_twitter_contactmethod( $contactmethods ) {
unset($contactmethods[‘aim’]);
unset($contactmethods[‘jabber’]);
unset($contactmethods[‘yim’]);
return $contactmethods;
}
add_filter(‘user_contactmethods’,’add_twitter_contactmethod’,10,1);
function admin_del_options() {
global $_wp_admin_css_colors;
$_wp_admin_css_colors = 0;
}
add_action(‘admin_head’, ‘admin_del_options’);
in members-list/core/meta.php
Comment out Address and below.