01/20/2015 at 7:48 pm
#315531
Keymaster
@ Linda
Sorry about the late reply!
Yes, this can be done as well. First you need to install the Code Snippets plugin.
Add a new snippet with the following code:
function cn_change_address_types_order( $options ) {
$options = array ( 'work' => $options['work'] ) + $options;
return $options;
}
add_filter( 'cn_address_options', 'cn_change_address_types_order' );
function cn_change_phone_types_order( $options ) {
$options = array ( 'workphone' => $options['workphone'] ) + $options;
return $options;
}
add_filter( 'cn_phone_options', 'cn_change_phone_types_order' );
function cn_change_email_types_order( $options ) {
$options = array ( 'work' => $options['work'] ) + $options;
return $options;
}
add_filter( 'cn_email_options', 'cn_change_email_types_order' );
Save and activate the new snippet.
That should do the trick.