Last active
June 20, 2016 06:54
-
-
Save harisrozak/3dfa72d31d60c61991b9d32431bf1455 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // essentially disable WooCommerce's shipping rates cache | |
| add_filter('woocommerce_checkout_update_order_review', 'clear_wc_shipping_rates_cache'); | |
| function clear_wc_shipping_rates_cache(){ | |
| $packages = WC()->cart->get_shipping_packages(); | |
| foreach ($packages as $key => $value) { | |
| $shipping_session = "shipping_for_package_$key"; | |
| unset(WC()->session->$shipping_session); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment