Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active October 29, 2018 15:26
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/00d3b9f66f48c70a98408d08ab92349f to your computer and use it in GitHub Desktop.
Save spivurno/00d3b9f66f48c70a98408d08ab92349f to your computer and use it in GitHub Desktop.
Gravity Wiz // Gravity Forms // Map GF Checkbox Field to ACF Checkbox Field
/**
* Gravity Wiz // Gravity Forms // Map GF Checkbox Field to ACF Checkbox Field
* http://graivtywiz.com/
*/
add_filter( 'gform_post_data', function( $data ) {
// Update "checkboxes" to your cusotm field name.
$data['post_custom_fields']['checkboxes'] = serialize( explode( ',', $data['post_custom_fields']['checkboxes'] ) );
return $data;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment