How to Disable Gutenberg and Enable th...
This WordPress snippet efficiently disables Gutenberg, allowing you to use the Classi...

WPCodeBox
464

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





