Release Date: November 2, 2017
Version: 2.200.000/WP:v4.8.3/WooCommerce:v3.2.1
Updates:
Important Note - Post Upgrade Steps:
WordPress' normal behavior is to not pass the transactions with $0 to the payment plugin. This behavior creates problems four C&P clients that want to process custom payment type as well as pre-authorization. To allow for $0 transactions to be passed to the payment plugin a change needs to be made to the core files. Please follow the steps below:
Version: 2.200.000/WP:v4.8.3/WooCommerce:v3.2.1
Updates:
- Compatibility with the latest Wordpress 4.8.3
Important Note - Post Upgrade Steps:
WordPress' normal behavior is to not pass the transactions with $0 to the payment plugin. This behavior creates problems four C&P clients that want to process custom payment type as well as pre-authorization. To allow for $0 transactions to be passed to the payment plugin a change needs to be made to the core files. Please follow the steps below:
- Locate the file: "woocommerce/includes/class-wc-cart.php".
- Locate the line in the code: return apply_filters( 'woocommerce_cart_needs_payment', 0 < $this->get_total( 'edit' ), $this );
- Modify the line in the code: return apply_filters( 'woocommerce_cart_needs_payment', 0 <= $this->get_total( 'edit' ), $this );