A
A
Alexander92922020-04-30 10:31:15
WordPress
Alexander9292, 2020-04-30 10:31:15

Contact form 7 + Wordpress - how to display your own thank you window?

I have a thank you box on my site.
How can I display it if I use contact form 7?

Default unfortunately does not fit

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
IvanMogilev, 2020-04-30
@Alexander9292

Contact form 7 has its own events, an example from the Documentation

document.addEventListener( 'wpcf7submit', function( event ) {
  if ( '123' == event.detail.contactFormId ) {
    alert( "The contact form ID is 123." );
    // do something productive
  }
}, false );

instead of an alert, you can try to show your window, and it's better to use the wpcf7mailsent event

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question