Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active October 15, 2021 15:45
Show Gist options
  • Save spivurno/51df05b385c0b93f3eef7c582a2d9d13 to your computer and use it in GitHub Desktop.
Save spivurno/51df05b385c0b93f3eef7c582a2d9d13 to your computer and use it in GitHub Desktop.
Gravity Perks // GP Copy Cat // Filter Copy Cat Fields
<?php
/**
* Gravity Perks // GP Copy Cat // Filter Copy Cat Fields
* http://gravityperks.com/
*/
add_filter( 'gpcc_copy_cat_fields_126', function( $fields, $form ) {
$fields[44] = array(
array(
'source' => 44,
'target' => 45,
'sourceFormId' => $form['id'],
'targetFormId' => $form['id']
)
);
return $fields;
}, 10, 2 );
@spivurno
Copy link
Author

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