Local pickup shipping option custom percentage discount in Woocommerce
问题 My WooCommerce checkout page gives some shipping options: Flat Rate (costs money) Local Pickup (free). How can I give a 5% discount on total order cost if a customer chooses Local Pickup shipping method? 回答1: The following code will add a discount of 5% to cart subtotal for Local Pickup chosen shipping method: add_action( 'woocommerce_cart_calculate_fees', 'custom_discount_for_pickup_shipping_method', 10, 1 ); function custom_discount_for_pickup_shipping_method( $cart ) { if ( is_admin() && !