• magicant

    (@magicant)


    Hi…

    I’ve gotten my CF7 to integrate with pipedrive but I cannot get it to send the actual message of the form..

    i.e. the form message is your-message in cf7. But I cannot work out which setting in wordpress to make this send the enquiry message from the customer into the notes section of wordpress.

    I’ve tried.
    Deal Value
    Deal Status

    The only one I can do is deal title and it makes the title huge!

    Also I cannot find the value to match the date the customer adds in the date column at the bottom of [ redundant link removed ]

    Many thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello! Has any solution been suggested for this?

    Thanks!

    Adding the form message to the Deal as a note is indeed a must for this plugin. Otherwise we loose essential information from the contact.
    Is it planned as a feature ?

    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 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Your-Message field’ is closed to new replies.