Replies: 1
First of all I want to thank for the plugin!
He is wonderful, simple and better than official.
There is a great need to send the “message” field through the feedback form
1) On the side infusionsoft created the Custom field “message” chose as “textarea”
2) in Contact Form 7 [textarea * infusionsoft-message placeholder “Message *” ni
3) in the file cf7-infusionsoft-modules.php added
<?php
$infusionsoft_fields = array(
…
‘message’ => ‘Message’,
);
4) in the file cf7-infusionsoft-addon.php added
// Assemble the contact data
$contact_data = array(
…
‘Message’ => ( !empty($posted_data[‘infusionsoft-message’]) ) ? $posted_data[‘infusionsoft-message’] : ”,
);
But it did not work. Stopped at all to send in infosionsoft. Before these manipulations sent everything except Message and Note.
If there is an opportunity to help please make it possible to send the Message field to infusionsoft.
Thanks in advance!
- This topic was modified 14 minutes ago by Fill777555.