Enable Country Search

By default, the county search feature is disabled. Use this snippet to enable it.

Instructions

  1. Install this snippet with our free Custom JavaScript plugin. https://gravitywiz.com/gravity-forms-code-chest/

Code

Filename: gpapf-enable-country-search.js

/**
 * Gravity Perks // Advanced Phone Field // Enable Country Search
 * https://gravitywiz.com/documentation/gravity-forms-advanced-phone-field/
 *
 * By default, the county search feature is disabled. Use this snippet to enable it.
 *
 * Instructions:
 *
 * 1. Install this snippet with our free Custom JavaScript plugin.
 *    https://gravitywiz.com/gravity-forms-code-chest/
 */
gform.addFilter( 'gpapf_intltelinput_options', function( options, formId, fieldId, instance ) {
	options.countrySearch = true;
	return options;
});

Leave a Reply

Your email address will not be published. Required fields are marked *

  • Trouble installing this snippet? See our troubleshooting tips.
  • Need to include code? Create a gist and link to it in your comment.
  • Reporting a bug? Provide a URL where this issue can be recreated.

By commenting, I understand that I may receive emails related to Gravity Wiz and can unsubscribe at any time.