拆除装运上WooCommerce电子邮件通知免费送货方式信息

问题描述:

当客户订单时,我想如果免费送货已被使用,以remove shipping info从订单确认邮件给客户喜欢。拆除装运上WooCommerce电子邮件通知免费送货方式信息

有没有可能做到这一点?

这是可能与此自定义挂钩函数(但所有电子邮件通知)

add_filter('woocommerce_get_order_item_totals', function($total_rows, $order, $tax_display){ 

    // Only for "Free Shipping" method 
    if(! $order->has_shipping_method('free_shipping') || is_account_page() || is_wc_endpoint_url('order-received')) 
     return $total_rows; 

    unset($total_rows['shipping']); 

    return $total_rows; 
}, 11, 3); 

代码放在您的活动子主题(或主题)的function.php文件或也以任何插件文件。

此代码已经过测试并可正常工作。