/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/**
 * Redirect WooCommerce to a custom page after checkout
 */
add_action( 'woocommerce_thankyou', 'reialesa_redirect_woo_checkout');
function reialesa_redirect_woo_checkout( $order_id ){
    $order = wc_get_order( $order_id );
    $url = 'https://toyotamanualspdf.com/thanks-for-your-order/';
    if ( ! $order->has_status( 'failed' ) ) {
        wp_safe_redirect( $url );
        exit;
    }
}