猿问

从确认邮件 woocommerce 中删除小计

我想从 woocommerce 新订单邮件中删除总计和小计。此代码适用于总计,但仍显示小计。


add_filter( 'woocommerce_get_order_item_totals', 'reordering_order_item_totals', 10, 3 );

function reordering_order_item_totals( $total_rows, $order, $tax_display ){

    $shipping = $total_rows['line_subtotal'];

    $order_total = $total_rows['order_total'];


    unset($total_rows['line_subtotal']);

    unset($total_rows['order_total']);



    return $total_rows;

}

我试过了['line_subtotal'],你知道它的名字吗['order_subtotal']?['subtotal']


十分感谢


有只小跳蛙
浏览 106回答 1
1回答

墨色风雨

请在functions.php文件中尝试以下代码 add_filter( 'woocommerce_get_order_item_totals', 'reordering_order_item_totals', 10, 3 );function reordering_order_item_totals( $total_rows, $order, $tax_display ){    $shipping = $total_rows['cart_subtotal'];    $order_total = $total_rows['order_total'];    unset($total_rows['cart_subtotal']);    unset($total_rows['order_total']);    return $total_rows;}
随时随地看视频慕课网APP
我要回答