我添加此功能是为了添加货到付款价格,我想使用WPML插件翻译文本(货到付款)
add_action( \'woocommerce_cart_calculate_fees\', \'custom_handling_fee\', 10, 1 );
function custom_handling_fee ( $cart ) {
if ( is_admin() && ! defined( \'DOING_AJAX\' ) )
return;
if ( \'cod\' === WC()->session->get(\'chosen_payment_method\') ) {
$fee = 10;
$cart->add_fee( \'Cash On Delivery\', $fee, true );
}
}