08/20/2013 at 4:22 pm
#267623
Keymaster
@ Paul
I had to look at the code for the CSV Import… but I fairly certain the only way to do thi is to edit the CSV Import to import the work phone before the home phone.
Look for this line in the csv.php
file found here:
../wp-content/plugins/connections-csv/submenu/
$phoneNumberMap = array('homephone' => 'home', 'homefax' => 'home_fax', 'workphone' => 'work', 'workfax' => 'work_fax', 'cellphone' => 'mobile');
And change it to this:
$phoneNumberMap = array('workphone' => 'work', 'workfax' => 'work_fax', 'homephone' => 'home', 'homefax' => 'home_fax', 'cellphone' => 'mobile');