#2045

Hi you,

I added code filter this text on your child theme:

add_filter( 'the_title', 'change_pay_for_order_title' );
function change_pay_for_order_title( $title ) {
    if ( is_wc_endpoint_url( 'order-pay' ) ) {
        return __('Checkout', 'woocommerce');
    }
    return $title;
}

You can go to Edit child-theme and edit this text