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 } );
