Forms
Send Contact Form 7, Gravity Forms, or Ninja Forms Submissions to a 3rd-party Service, like a CRM. Multiple configurable services, custom field mapping. Provides hooks and filters for pre/post processing of results. Allows you to send separate emails, or attach additional results to existing emails. Comes with a couple examples of hooks for common CRMs (listrak, mailchimp, salesforce). Check out the FAQ section for add-on plugins that extend this functionality, like sending XML/SOAP posts, setting headers, and dynamic fields. The plugin essentially makes a remote request (POST) to a service URL, passing along remapped form submission values. Based on idea by Alex Hager “How to Integrate Salesforce in Contact Form 7“. Original plugin, Contact Form 7: 3rdparty Integration developed with the assistance of AtlanticBT. Current plugin sponsored by Stephen P. Kane Consulting. Please submit bugs / support requests to GitHub issue tracker in addition to the WordPress Support Forums because the Forums do not send emails. Hooks Please note that this documentation is in flux, and may not be accurate for latest rewrite 1.4.0 add_action('Forms3rdPartyIntegration_service_a#', $response, $param_ref); hook for each service, indicated by the # – this is given in the ‘Hooks’ section of each service provide a function which takes $response, &$results as arguments allows you to perform further processing on the service response, and directly alter the processing results, provided as array('success'=>false, 'errors'=>false, 'attach'=>'', 'message' => ''); success = true or false – change whether the service request is treated as “correct” or not errors = an array of error messages to return to the form attach = text to attach to the end of the email body message = the message notification shown (from CF7 ajax response) below the form note that the basic “success condition” may be augmented here by post processing add_action('Forms3rdPartyIntegration_service', $response, $param_ref, $sid); same as previous hook, but not tied to a specific service add_filter('Forms3rdPartyIntegration_service_filter_post_#, ... hook for each service, indicated by the # – this is given in the ‘Hooks’ section of each service allows you to programmatically alter the request parameters sent to the service should return updated $post array add_filter('Forms3rdPartyIntegration_service_filter_post', 'YOUR_HOOK', 10, 4); in addition to service-specific with suffix _a#; accepts params $post, $service, $form, $sid add_filter('Forms3rdPartyIntegration_service_filter_args', 'YOUR_HOOK', 10, 3); alter the args array sent to wp_remote_post allows you to add headers or override the existing settings (timeout, body) if you return an array containing the key response_bypass, it will skip the normal POST and instead use that value as the 3rdparty response; note that it must match the format of a regular wp_remote_post response. Note: if using response_bypass you should consider including the original arguments in the callback result for debugging purposes. add_action('Forms3rdPartyIntegration_remote_failure', 'mycf7_fail', 10, 5); hook to modify the Form (CF7 or GF) object if service failure of any kind occurs — use like: function mycf7_fail(&$cf7, $debug, $service, $post, $response) { $cf7->skip_mail = true; // stop email from being sent // hijack message to notify user ///TODO: how to modify the “mail_sent” variable so the message isn’t green? on_sent_ok hack? $cf7->messages[‘mail_sent_ok’] = ‘Could not complete mail request:** ‘ . $response[‘safe_message’]; } needs some way to alter the mail_sent return variable in CF7 to better indicate an error – no way currently to access it directly. add_action('Forms3rdPartyIntegration_service_settings', 'YOUR_HOOK', 10, 3) accepts params $eid, $P, $entity corresponding to the index of each service entity and this plugin’s namespace, and the $entity settings array allows you to add a section to each service admin settings name form fields with plugin namespace to automatically save: $P[$eid][YOUR_CUSTOM_FIELD] $rarr; Forms3rdPartyIntegration[0][YOUR_CUSTOM_FIELD] add_action('Forms3rdPartyIntegration_service_metabox', 'YOUR_HOOK', 10, 2) accepts params $P, $entity corresponding to the index of each service entity and this plugin’s namespace, and the $options settings array (representing the full plugin settings) allows you to append a metabox (or anything else) to the plugin admin settings page name form fields with plugin namespace to automatically save: $P[YOUR_CUSTOM_FIELD] $rarr; Forms3rdPartyIntegration[YOUR_CUSTOM_FIELD] add_filter('Forms3rdPartyIntegration_debug_message', 'YOUR_HOOK', 10, 5); bypass/alternate debug logging add_filter('Forms3rdPartyIntegration_plugin_hooks', 'YOUR_HOOK', 10, 1); Accepts an array of contact form plugin hooks to attach F3p to, and returns that array. Modify result to attach to additional plugin hooks, like GF edit. add_filter('Forms3rdPartyIntegration_service_filter_url', 'YOUR_HOOK', 10, 2); hook a function that takes the $service_url, $post_args and returns the endpoint $url used to modify the submission url based on mappings or other information $post_args contains the body and other wp_remote_post details Basic examples provided for service hooks directly on plugin Admin page (collapsed box “Examples of callback hooks”). Code samples for common CRMS included in the /3rd-parties plugin folder. Stephen P. Kane Consulting From the website and Handpicked Tomatoes: Transparent and Holistic Approach Transparency is good. It’s amazing how many web design sites hide who they are. There are lots of reasons, none of which are good for the customer. We don’t do that. I’m Stephen Kane, principal web craftsman at HandpickedTomatoes, and I’m an Orange County based freelancer who occasionally works with other local freelancers and agencies to deliver quality web solutions at very affordable prices. We work to earn the right to be a trusted partner. One that you can turn to for professional help in strategizing, developing, executing, and maintaining your Internet presence. We take a holistic view. Even if a project is small, our work should integrate into the big picture. We craft web architecture and designs that become winning websites that are easy to use and to share. We custom build social network footprints on sites like linkedin, facebook, twitter, youtube, flickr, yelp!, and google places and integrate them into your website to leverage social marketing. We help you set up and execute email campaigns, with search engine marketing, with photography, with site copy and content and anything else that you need in order to have a successful Internet presence. Through this holistic approach, we work with clients to grow their sales, improve their brand recognition, and manage their online reputation.
Top keywords
- service25×2.35%
- add13×1.22%
- post13×1.22%
- 'forms3rdpartyintegration11×1.03%
- form11×1.03%
- response11×1.03%
- filter10×0.94%
- array9×0.85%
- hooks9×0.85%
- 108×0.75%
- 'forms3rdpartyintegration service7×0.66%
- 'your7×0.66%
Redirection for Contact Form 7
Redirection for Contact Form 7 enhances your forms with essential post-submission actions all in one plugin. Store form entries in your database, redirect users to any page or URL, send email notifications, block spam with honeypot protection, and help with GDPR compliance through data export/erase requests. Want more power? Our PRO version includes JavaScript execution after submission, webhook integration for third-party services, conditional logic based on user input, frontend post creation, PDF generation from form data, and seamless integrations with popular services like Mailchimp, PayPal, Stripe, HubSpot, Salesforce, and Twilio. 🔗 HELPFUL LINKS: Need any help with setup? CHECK DOCUMENTATION Interested in Redirection For CF7 Pro? LEARN MORE USAGE Simply go to your form settings, select the “Action” tab, and add additional Submission Actions based on your requirements. NOTE: This plugin requires CF7 version 4.8 or later. 🤝 HOW REDIRECTION FOR CF7 CAN HELP YOU: Redirect to Any URL: Easily redirect users to any specific webpage after form submission, enhancing user navigation and experience. Open Page in a New Tab: Configure forms to open the target URL in a new tab, keeping your site accessible to users post-submission. Pass Fields from the Form as URL Query Parameters: Seamlessly append submitted form data to the URL as query parameters, enabling personalized follow-up pages. Add Honeypot to Minimize Spam: Integrate a honeypot technique in your forms to prevent spam without affecting user experience. Save Form Submissions to Your Database: Automatically store all form submissions in your database, ensuring no data loss and facilitating easy back-referencing. GDPR Compliance – Create Erase Personal Data Request: Allow users to initiate requests for erasing their personal data, ensuring compliance with GDPR mandates. GDPR Compliance – Create Export Personal Data Request: Enable users to request exports of their personal data, supporting transparency and adherence to GDPR guidelines. 🤩 GET MORE FEATURES WITH REDIRECTION FOR CF7 PRO Add Conditional Logic: Enhance your submission actions with the Conditional Logic of Actions Extension. Set If/Or rules based on user inputs to manage powerful conditional rules effectively. Run JavaScript After Form Submission: Execute custom JavaScript code after a form is submitted, ideal for tracking conversions and integrating with analytics tools. Create and Send PDF: Add the option to generate and send PDF using the submitted form fields. Frontend Publishing: Add the ability to allow your users to publish posts from your website front-end. Webhook Integration: Supercharge your forms with advanced Webhook support—seamlessly connect to third-party apps using POST, GET, DELETE, and PATCH methods, with full compatibility for PARAMS, JSON, and XML formats.Empower your forms with advanced Webhook integration, supporting POST, GET, DELETE, PATCH methods and PARAMS, JSON, and XML formats for comprehensive connectivity with third party apps. Add a Thank You Popup: Add the ability to thank your users with a noticeably designed thank-you popup. Integrate with Mailchimp: Add the ability to register submitted forms to any of your MailChimp lists. Integrate PayPal & Stripe: Collect payments from your users by redirecting them to PayPal or Stripe. Integrate with HubSpot CRM: Add the ability to send form submissions from Contact Form 7 to HubSpot CRM. Integrate with Salesforce CRM: Add the ability to send submission forms from Contact Form 7 to Salesforce CRM. SMS with Twilio Integration: Add the ability to send SMS messages to your users or notifications to yourself using Twilio. Unlock these premium features and more with Redirection for CF7 PRO! Still have questions? Ask your pre-sales questions here, and we will get back to you promptly. Or, purchase with confidence and try it for yourself—we offer a 30-day no-questions-asked 100% money-back guarantee. 🤔 WHAT YOU CAN DO WITH REDIRECTION FOR CF7: Redirection for Contact Form 7 opens up a world of opportunities! Explore how different audiences can leverage its features: 📦 E-commerce Sites: Automate order confirmations and updates through SMS with the Twilio integration, providing customers with real-time updates directly on their phones. 🫶 Non-Profit Organizations: Enhance donor engagement by redirecting donors to personalized thank you pages using Conditional Logic, and manage GDPR compliance with data export and erase requests. 🏠 Real Estate Agencies: Direct potential clients to a customized URL after form submission, showcasing specific property details or offers based on the input from inquiry forms. 🛠️ Tech Support Services: Link form submissions with Salesforce or HubSpot CRM to automatically create support tickets and manage follow-up actions efficiently. 📚 Education Providers: Implement the Frontend Publishing feature to allow students to submit assignments and projects directly through forms, making submission processes smoother and more organized. 📈 Marketing Teams: Capture lead information and automatically add it to a Mailchimp email list for subsequent marketing campaigns, ensuring seamless integration with your digital marketing strategies. 💵 Freelancers and Consultants: Offer a streamlined payment process by integrating with PayPal and Stripe, allowing clients to pay for services directly through the submission form. 📝 Bloggers and Influencers: Manage user-generated content by enabling frontend post submissions, allowing followers to contribute stories, photos, or feedback directly on the website. ✨ YOU SHOULD USE REDIRECTION WITH CF7 IF: You Want to Personalize User Journeys: Provide a tailored experience by redirecting users to pages that fit their needs. You Aim to Automate Processes: Simplify workflows by directing users to relevant resources or actions after form submission. You Seek to Increase Engagement: Capture user interest by guiding them to content or offers that resonate with them. You Need to Optimize Conversions: Redirect users to strategically designed pages to maximize conversion opportunities. You Plan to Manage Leads Efficiently: Ensure leads are channeled to the right destination for effective handling and follow-up. 👋 WE’RE HERE FOR YOU, AND WE TAKE ALL FEEDBACK SERIOUSLY 📚 Knowledge Base: We’ve created a complete documentation library and we’re still constantly updating with new tutorials. 🦸 Support forum: We’re here to help. Feel free to open a new thread on the Support Forum. 🎙️ SEE WHAT REAL USERS TALK ABOUT US Very nice and helpful plugin – “This is a very helpful plugin. It makes my task much easier and it is also very nice for website users to be redirected to the summary page of their entries.” Works like a charm 🙂 – “What else to say? When a customer submits a form, it fluently redirects him/her to specific url when I say “Thank you for submitting the form, we will contact you later…”. So thank you very much creators!” 5 star – “Working with Conversion tracking and I like the fact that you can pull the contact form fields in that you want to show on the Thank you page. Everything works fantatic.” Really useful! – “Just chiming in with a positive review. Works great, and has been for a while now. Thanks so much!!”