質問

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

役に立ちましたか?

解決

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

ライセンス: CC-BY-SA帰属
所属していません wordpress.stackexchange
scroll top