Show All Countries On Specific Field

This snippet will show all countries in the flag picker for a specific form/field. It is useful if you have limited to specific countries on the plugin settings, but want to allow all countries on a specific form/field.

Instructions

See “Where do I put snippets?” in our documentation for installation instructions.

Code

Filename: gpapf-show-all-countries.php

1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
/**
 * Gravity Perks // Advanced Phone Field // Show All Countries On Specific Field
 * https://gravitywiz.com/documentation/gravity-forms-advanced-phone-field/
 *
 * This snippet will show all countries in the flag picker for a specific form/field. It is useful if you have limited to specific countries
 * on the plugin settings, but want to allow all countries on a specific form/field.
 */
// Update "123" to your form ID and "4" to your Phone field ID.
add_filter( 'gpapf_init_args_123_4', function( $args ) {
	$args['countriesAction'] = 'all';
	return $args;
} );

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.