04/28/2015 at 9:21 am
#332713
Keymaster
@ Charles
Thanks for the suggestions. I can actually let you know how to set most of the defaults. Here’s how:
Install the Code Snippet plugin.
Add a new snippet with the following code:
function cn_add_address_types( $options ) {
unset( $options['home'] );
unset( $options['school'] );
unset( $options['other'] );
return $options;
}
add_filter( 'cn_address_options', 'cn_add_address_types' );
function cn_add_phone_types( $options ) {
unset( $options['homefax'] );
unset( $options['workfax'] );
return $options;
}
add_filter( 'cn_phone_options', 'cn_add_phone_types' );
function cn_add_email_types( $options ) {
unset( $options['personal'] );
return $options;
}
add_filter( 'cn_email_options', 'cn_add_email_types' );
Hope that helps!
