Skip to content

Instantly share code, notes, and snippets.

@spivurno
Created December 5, 2019 02:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/35e169a197dee221cca5473d1d642cf3 to your computer and use it in GitHub Desktop.
Save spivurno/35e169a197dee221cca5473d1d642cf3 to your computer and use it in GitHub Desktop.
<?php
/**
* Gravity Wiz // Gravity Forms // Map GF Checkbox Field to ACF Checkbox Field (User Meta)
* http://graivtywiz.com/
*/
add_filter( 'gform_user_registration_meta_value', function( $value, $meta_key ) {
// Update "checkboxes" to your custom field's name.
if( $meta_key === 'checkboxes' ) {
$value = array_map( 'trim', explode( ',', $value ) );
}
return $value;
}, 10, 2 );
@spivurno
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment