• Whilst adding new contact forms to pipedrive integration, the old ones have stopped pulling through, and i’m unable to the check boxes (well i’m able to check them but they don’t stay once saved) to attach a person to deal, and attach an organisation to deal. Basically, i want any contact form on our website to all pull through into leads in.

Viewing 1 replies (of 1 total)
  • add_filter(‘cf7_pipedrive_deal_fields’, ‘update_fields’);
    function update_fields($fields) {
    $api_obj = Cf7_Pipedrive_Admin_Settings::get_instance();
    $result = json_decode (file_get_contents(‘https://api.pipedrive.com/v1/dealFields?api_token=’.$api_obj->cf7_pipedrive_api_key) );
    foreach ($result->data as $field){
    $fields[$field->key] = array( ‘api_key’ => $field->key, ‘display_name’ => $field->name);
    }
    return $fields;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Pipedrive integration no longer working’ is closed to new replies.