Zum Inhalt springen
Startseite » CF7 Snippets » CF7 Umleitung zu einer Danke Seite

CF7 Umleitung zu einer Danke Seite

Nach dem Absenden wird zu einer zuvor definierten eigenen Danke-Seite.

add_action( 'wp_head', function () { ?>
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
  location = 'https://IHRE-SEITE/danke';
}, false );
</script>
<?php } );

… oder auch das

add_action( 'wp_head', function () { ?>
<script>
(function( $ ) {
  $( document ).on( 'wpcf7submit', '.wpcf7', function ( e ) {
    if ( 'validation_failed' === e.detail.status ) {
      return;
    }
    window.location = 'https://contactform7.com/';
  } );
} )( jQuery );
</script>
<?php } );