This snippet redirects to a custom page once a Listing is submitted and after waiting 3 seconds.
Customization Notes
- Add your desired URL to Line 4 for the redirect.
- Optional: Change the waiting period by adjusting the 300 value on Line 5.
add_action( 'mylisting/submission/done', function( $id ){
?> <script type='text/javascript'>
setTimeout( function() {
window.location.href='https://domain.com/custom-url';
}, 300 );
</script>
<?php
}, 999, 1);