Domanda

I’m looking for solution whole day but can’t find anything that work. So I want to automaticaly submit CF7 on page load. If I use any jQuery or JS solution there is some endless looping on the site. So any solution for my problem?

Thanks in advance

È stato utile?

Soluzione

You need to call submit() function on document ready check the code

<script type="text/javascript">
jQuery(document).ready(function(){
     jQuery("#wpcf7-f3857-o1 form").submit();
});
</script>

In my code wpcf7-f3857-o1 is the contact form's css id. You need to change that id. try the code and let me know the result. Thanks

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a wordpress.stackexchange
scroll top