shipping-method

Hide payment methods based on selected shipping method in WooCommerce [duplicate]

怎甘沉沦 提交于 2020-08-20 07:06:48
问题 This question already has an answer here : Show hide payment methods based on selected shipping method in Woocommerce (1 answer) Closed last year . I was trying to hide two payment method if one shipping method selected by adding code below to theme function.php // Filter payment gatways for different shipping methods function my_custom_available_payment_gateways( $gateways ) { $chosen_shipping_rates = WC()->session->get( 'chosen_shipping_methods' ); if ( in_array( 'flat_rate:7', $chosen

Display ALL available shipping methods for each specific order on admin edit order pages in Woocommerce

感情迁移 提交于 2020-08-10 19:00:29
问题 On the checkout page of my WooCommerce based site, users will have a list of shipping methods to choose from depending on what they are purchasing This is the list I want to capture: Things like “Free Shipping” for orders over a certain price “Freight Shipping” for certain items, and so on. My goal, is to display ALL available methods for each specific order , and display it on the “Edit Order / Order Details” page in the Admin view. A small feature that would help us be able to quickly