Set a percentage discount to Local pickup shipping method in Woocommerce
问题 I have a WordPress site which uses WooCommerce plugin. I would like to offer buyer 5% reduction from cart total if they select local pickup as a shipping method. I already tried - 5 * [qty] and it doesn't seem to be working. I also tried -0.95 * [cost] with no luck 回答1: I am using WooCommerce 3 and achieved the above result by writing a function inside the function.php of active theme. function prefix_add_discount_line( $cart ) { $chosen_methods = WC()->session->get( 'chosen_shipping_methods'