How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
39
Redirect users after listing submission on your MyListing website.
<?php
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
add_action( 'mylisting/submission/done', function( $id ){
?> <script type='text/javascript'>window.location.href='https://your-url-goes-here'</script>
<?php
}, 99, 1);