Hey TStone,
We’ve had a number of requests to change this and will add a setting in a future update.
Are you comfortable with PHP? In the mean time, you could change the code that handles the phone number format.
Open up the “helper-functions.php” file in the “inc” folder for the plugin’s files. Find line 145 and change the ‘($1) $2-$3’ to your preferred format:
return preg_replace( '/([0-9]{3})([0-9]{3})([0-9]{4})/', '($1) $2-$3', $raw_number );
You might also want to change the numbers in brackets {3},{3},{4}, to however phone numbers are broken up. For example, this will change the phone number format to something like “23-4545-3434”:
return preg_replace( '/([0-9]{2})([0-9]{4})([0-9]{4})/', '$1-$2-$3', $raw_number );
Hopefully that helps! Otherwise look for an update in February that addresses this.
– Craig