/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 04 2025 | 12:40:36 */
add_action('template_redirect', 'xc_redirect_checkout_to_funnel');
function xc_redirect_checkout_to_funnel() {
    // Se o usuário acessar /checkout ou a página com ID X, redireciona ao funnel
    if ( is_page('checkout') || ( isset($_SERVER['REQUEST_URI']) && strpos($_SERVER['REQUEST_URI'], '/checkout') !== false ) ) {
        wp_redirect( home_url('/funnel-checkout') ); // substitua pelo slug real do seu funnel
        exit;
    }
}
