woocomerce checkout redirection

PHOTO EMBED

Thu Sep 05 2024 19:18:38 GMT+0000 (Coordinated Universal Time)

Saved by @Promakers2611

function custom_redirect_after_purchase() {
    if (is_order_received_page()) {
        ?>
        <script type="text/javascript">
            document.addEventListener('DOMContentLoaded', function() {
                setTimeout(function() {
                    window.location.href = "https://thepromakers.com/my-bought-services/";
                }, 5000); // 5000 milliseconds = 5 seconds
            });
        </script>
        <?php
    }
}
add_action('wp_footer', 'custom_redirect_after_purchase');
content_copyCOPY