02/15/2014 at 11:31 am
#280105
Keymaster
@ Tim
Sorry, but there is not really an easy solution to this. You have to edit the PHP files to do this which means you’ll have to make this change when you update Connections. You would have to edit this file changing the order of they arrays to put the work types first.
For example, to change the address type order you would have to change this starting on line 783:
public function getDefaultAddressValues() {
$defaultAddressValues = array(
'home' => __( 'Home' , 'connections' ),
'work' => __( 'Work' , 'connections' ),
'school' => __( 'School' , 'connections' ),
'other' => __( 'Other' , 'connections' )
);
return $defaultAddressValues;
}
To this:
public function getDefaultAddressValues() {
$defaultAddressValues = array(
'work' => __( 'Work' , 'connections' ),
'home' => __( 'Home' , 'connections' ),
'school' => __( 'School' , 'connections' ),
'other' => __( 'Other' , 'connections' )
);
return $defaultAddressValues;
}
Hope that helps.
