Release Date: July 6, 2015
Version #: 1.3.6
New Features:
Version #: 1.3.6
New Features:
- Addition of processing free transactions to WooCommerce. Since the plugin does not natively process free transactions a change needs to be made to the core code to force WooCommerce to post to the payment processor when the balance is 0. The feature is optional and the change is not required if there is no need to process free transactions. The feature is based on client request as discussed in this thread: Read more
The following change is required to the "needs_payment" funcation- This code change has to be made after each upgrade of woocommerce.
Original code: return apply_filters( 'woocommerce_cart_needs_payment', $this->total > 0, $this );
Modified code: return apply_filters( 'woocommerce_cart_needs_payment', $this->total >= 0, $this );
Modified code: return apply_filters( 'woocommerce_cart_needs_payment', $this->total >= 0, $this );
- Compatibility with the "Product Addons" plugin allowing for custom questions to be posted to the C&P API.
Comment