根据WooCommerce中的送货方式自定义收到的订单页面 [英] Customize Order received page based on shipping method in WooCommerce

查看:109
本文介绍了根据WooCommerce中的送货方式自定义收到的订单页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何根据订单的运送方式自定义谢谢订单页面?因此,例如,如果客户使用按需交货选项,则谢谢页面将显示不同的标题。

How could I customise the order thank you page based on the order's shipping method? So for example if a customer used 'Delivery on request' option, the thank you page would display a different title.

add_filter( 'the_title', 'woo_personalize_order_received_title', 10, 2 );
function woo_personalize_order_received_title( $title, $id ) {
    if ( is_order_received_page() && get_the_ID() === $id ) {
        global $wp;
        // Get the order. Line 9 to 17 are present in order_received() in includes/shortcodes/class-wc-shortcode-checkout.php file
        $order_id  = apply_filters( 'woocommerce_thankyou_order_id', absint( $wp->query_vars['order-received'] ) );
        $order_key = apply_filters( 'woocommerce_thankyou_order_key', empty( $_GET['key'] ) ? '' : wc_clean( $_GET['key'] ) );
        if ( $order_id > 0 ) {
            $order = wc_get_order( $order_id );
            if ( $order->get_order_key() != $order_key ) {
                $order = false;
            }
        }
        if ( isset ( $order ) ) {
    $chosen_titles = array();
    $available_methods = $wp->shipping->get_packages();
    $chosen_rates = ( isset( $wp->session ) ) ? $wp->session->get( 'chosen_shipping_methods' ) : array();

    foreach ($available_methods as $method)
           foreach ($chosen_rates as $chosen) {
                if( isset( $method['rates'][$chosen] ) ) $chosen_titles[] = $method['rates'][ $chosen ]->label;
            }
    if( in_array( 'Delivery price on request', $chosen_titles ) ) {
     //$title = sprintf( "You are awesome, %s!", esc_html( $order->billing_first_name ) ); // use this for WooCommerce versions older then v2.7
        $title = sprintf( "You are awesome, %s!", esc_html( $order->get_billing_first_name() ) );
    }

        }
    }
    return $title;
}


推荐答案

is_order_received_pa​​ge()不存在。而是使用 is_wc_endpoint_url('order-received') ...
还要 $ wp-> session $ wp->运输不起作用。相反,您可以在订单项发货中找到所选的发货方式数据。

is_order_received_page() doesn't exist. Instead use is_wc_endpoint_url( 'order-received' )… Also $wp->session or $wp->shipping will not work. Instead you can find the chosen shipping method data in the order item "shipping".

请尝试以下操作:

add_filter( 'the_title', 'customizing_order_received_title', 10, 2 );
function customizing_order_received_title( $title, $post_id ) {
    if ( is_wc_endpoint_url( 'order-received' ) && get_the_ID() === $post_id ) {
        global $wp;

        $order_id  = absint( $wp->query_vars['order-received'] );
        $order_key = isset( $_GET['key'] ) ? wc_clean( $_GET['key'] ) : '';

        if ( empty($order_id) || $order_id == 0 )
            return $title; // Exit

        $order = wc_get_order( $order_id );

        if ( $order->get_order_key() != $order_key )
            return $title; // Exit

        $method_title_names = array();

        // Loop through Order shipping items data and get the method title
        foreach ($order->get_items('shipping') as $shipping_method )
            $method_title_names[] = $shipping_method->get_name();

        if( in_array( 'Delivery price on request', $method_title_names ) ) {
            $title = sprintf( "You are awesome, %s!", esc_html( $order->get_billing_first_name() ) );
        }
    }
    return $title;
}

代码在活动子主题(或活动主题)的function.php文件中)。经过测试并有效。

Code goes on function.php file of your active child theme (or active theme). Tested and works.

类似:在Woocommerce中通过送货方式在谢谢页面上添加自定义消息

这篇关于根据WooCommerce中的送货方式自定义收到的订单页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆