- Unzip/upload plugin folder to your plugins directory (
/wp-content/plugins/)
- Make sure Forms 3rdparty Integration is installed and settings have been saved at least once.
- Activate this plugin
- Set the ‘Phone number fields’ option (fieldset may be collapsed by default) using URL-querystring format.
You can provide one or more phone numbers separated by & symbols. You may specify the input format (per country) with =country-code. You may specify both the input format and output format with =input-format,output-format. You may use another submission field to define the format by prefixing that field name with ##, e.g. field_name=##another_field
Will parse and split up input phone number(s) and create additional ‘submission’ fields (which you can map against): * FIELDNAME-CountryCode = country code * FIELDNAME-NationalNumber = regional number (without country code) * FIELDNAME-AreaCode = regional code * FIELDNAME-Subscriber = local number (without area code) * FIELDNAME-Extension = telephone extension, if present * FIELDNAME-NumberOfLeadingZeros = how many zeros it would start with if it had them * FIELDNAME-Out = reformated phone number
Example: to convert input phone-number “9195551234” in various fields:
field_name&field2=US,2&field3=2,3&field4=##field5
field_name from assumed format into standard international +1 919-555-1234
field2 assuming US country code into standard regional (919) 555-1234
field3 from international format (requires country code +X) into url style tel:+1-919-555-1234
field4 from international format (requires country code +X) into a format defined by field5