Advertisement
verygoodplugins

Untitled

Nov 19th, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. function after_submission( $entry, $form ) {
  2.  
  3.     wp_fusion()->crm->object_type = 5; // ID of your custom object type
  4.  
  5.     $object_data = array(
  6.         'email'     => rgar( $entry, '1' ), // Standard field
  7.         'f1500'     => rgar( $entry, '2' ) // Custom field
  8.     );
  9.  
  10.     $object_id = wp_fusion()->crm->add_contact( $object_data, false );
  11.  
  12. }
  13.  
  14. add_action( 'gform_after_submission_1', 'after_submission', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement