Hello everybody,
I haven't found any solution to this (I think) bug so I decided to create this javascript that runs a _gaq.push when the "mail-sent-ok" message is shown into the page:
<script type="text/javascript">
$(document).ready(function(){
if($('.wpcf7 form div').hasClass('wpcf7-mail-sent-ok')){
_gaq.push(['_trackPageview','/destination_tracking_page_url']);
}
});
</script>
I hope this will help you.