01/01/2015 at 10:23 am
#313852
Keymaster
@ dominic
You can use the Code Snippets plugin and a filter so you do not lose the changes when updating. This should do it:
add_filter( ‘cn_address_options’, ‘cn_address_options’ );
function cn_address_options( $options ) {
unset( $options[‘work’] );
unset( $options[‘school’] );
unset( $options[‘other’] );
return $options;
}
Following the same structure will work for the social media option too.
Hope that helps!
