Hi Elias,
Seems that you are using Google Tag Manager to manage the Facebook Pixel. Our plugin seems to not be working with this configuration and you should use an event handler in Google Tag Manager to track the lead.
In case of using Google Tag Manager, you should deactivate our plugin and then set-up a simple JavaScript Event Handler within a Custom HTML Tag in GTM. Have a look at: Goal Tracking for Contact Form 7 (CF7) with DOM Events & Google Tag Manager (TL;DR?—?A step-by-step tutorial for tracking Contact Form 7 submissions as Goals in Google Analytics using Google Tag Manager and the new CF7 DOM Events.) or Tracking events from WP Contact Form 7 in Google Analytics?
Both examples are for Google Analytics but can be adapted to the Facebook Pixel.
Basically you have to setup the following:
WPCF7 Event Listener
- TAG CONFIGURATION
- Tag type: Custom Type
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
dataLayer.push({'event': 'form_submitted'});
}, false );
</script>
WPCF7 Event Trigger
TRIGGER CONFIGURATION
- Trigger Type: Custom event
- Event name: form_submitted
- This trigger fires on ALL CUSTOM EVENTS
And then you have to configure the custom event tag to fire the Facebook “LEAD” pixel on the form submission:
WPCF7 FORM SUBMITTED OK trigerring on WPCF7 Event Trigger
Hope this helps.
Best regards from Spain.