簡體   English   中英

在 Woocommerce 訂單總計行中添加計算的節省總計

[英]Add calculated saving total in Woocommerce order totals rows

在 Woocommerce 中,我使用以下代碼計算並在購物車和結帳頁面中的訂單上顯示“總節省”:

function wc_discount_total_30() {
    global $woocommerce;
    $discount_total = 0;
    foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values) {
        $_product = $values['data'];
        if ( $_product->is_on_sale() ) {
            $regular_price = $_product->get_regular_price();
            $sale_price = $_product->get_sale_price();
            $discount = ($regular_price - $sale_price) * $values['quantity'];
            $discount_total += $discount;
        }
    }
    if ( $discount_total > 0 ) {
        echo '<tr class="cart-discount">
        <th>'. __( 'Saved', 'tsavedis' ) .'</th>
        <td data-title=" '. __( 'Saved', 'tsavedis' ) .' ">'
        . wc_price( $discount_total + $woocommerce->cart->discount_cart ) .'</td>
        </tr>';
    }
}

// Hook our values to the Basket and Checkout pages
add_action( 'woocommerce_cart_totals_after_order_total', 'wc_discount_total_30', 99);
add_action( 'woocommerce_review_order_after_order_total', 'wc_discount_total_30', 99);

我需要在后端的“訂單編輯”頁面中將此總節省顯示為自定義字段。
怎么做 ?

這是將相同內容添加到訂單總計表的方法:

// Display the chosen delivery information
add_filter( 'woocommerce_get_order_item_totals', 'add_saving_total_order_totals', 10, 3 );
function add_saving_total_order_totals( $total_rows, $order, $tax_display ) {;
    $saving_total = 0;

    // Loop through Order items
    foreach($order->get_items() as $item ){
        $product = $item->get_product();

        if( $product->is_on_sale() ){
            $regular_price   = (float) $product->get_regular_price();
            $active_price    = (float) $product->get_price();

            $saving_total   += ($regular_price - $active_price) * $item->get_quantity();
        }
    }

    if( $saving_total > 0 ) {
        $discount_total = $order->get_discount_total();

        $label  = __( 'Saved', 'tsavedis' );
        $value  = wc_price( $saving_total + $discount_total );

        $total_rows['saving'] = array( 'label' => $label,'value' => $value );
    }
    return $total_rows;
}

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

暫無
暫無

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

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