簡體   English   中英

通過送貨方式在感謝頁面上添加自定義消息

[英]Adding custom message on Thank You page by shipping method

我正在嘗試向訂單接收(謝謝)頁面添加一條消息,僅當訂單使用免費送貨時。 該消息可以替代標准的“​​謝謝...”消息,也可以作為補充。

這是我正在使用的代碼。 它基於這里的答案: 根據 WooCommerce 中的運輸方式自定義收到的訂單頁面

//add message to order received if outside delivery area
add_filter( 'woocommerce_thankyou_order_received_text', 'woo_change_order_received_text', 20, 2 );
function woo_change_order_received_text( $thankyou_text, $order ) {
    if ( is_wc_endpoint_url( 'order-received' ) ) {
        global $wp;

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


        $method_title_names = array();

        if( in_array( 'Free shipping', $method_title_names ) ) {
            return sprintf( __("%s <div class=\"outside-delivery-checkout\"><b>PLEASE NOTE:</b><br />Your shipping destination is outside of our normal delivery area. Our team will call you to calculate an additional fuel surcharge.</div>", "woocommerce"),
    $thankyou_text
                                );
        }
    }
    return $thankyou_text;
}

我無法讓它正常工作,也不知道出了什么問題。 任何幫助是極大的贊賞。

您只需要以下內容(其中“免費送貨”是您的免費送貨方式的名稱)

add_filter( 'woocommerce_thankyou_order_received_text', 'woo_change_order_received_text', 20, 2 );
function woo_change_order_received_text( $text, $order ) {
    if( $order->get_shipping_method() == 'Free shipping' ) {
        $text .= ' <div class=\"outside-delivery-checkout\"><strong>'. __("PLEASE NOTE", "woocommerce") . ':</strong><br />'.__("Your shipping destination is outside of our normal delivery area. Our team will call you to calculate an additional fuel surcharge.", "woocommerce") . '</div>';
    }
    return $text;
}

類似:代碼位於活動子主題(或活動主題)的 function.php 文件中。 測試和工作。


根據 WooCommerce 中的運輸方式自定義訂單接收頁面

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM