Trim US Zip Codes to First 5 Digits

Instructions

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

Code

Filename: gpaa-trim-us-zip-codes.js

/**
 * Gravity Perks // Address Autocomplete // Trim US Zip Codes to First 5 Digits
 * https://gravitywiz.com/documentation/gravity-forms-address-autocomplete/
 *
 * Instructions:
 *
 * 1. Install this snippet with our free Custom JavaScript plugin.
 *    https://gravitywiz.com/gravity-forms-code-chest/
 */
 gform.addFilter( 'gpaa_values', function( values, place ) {
	values.postcode = values.postcode.split( '-' )[0];
	return values;
} );

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.