Version 7.0.0-alpha.1
Pre-release
Pre-release
thomasplevy
released this
15 Jun 20:19
·
188 commits
to prerelease
since this release
v7.0.0-alpha.1 - 2022-06-15
New Features
- Added new AJAX checkout and payment source switching endpoints for payment gateways to utilize instead of the preexisting synchronous form submission methods.
Bug Fixes
- Don't attempt to lookup the default payment gateway from user meta data.
Deprecations
- Deprecated
LLMS_Controller_Orders::switch_payment_source()
in favor ofLLMS_Controller_Checkout::switch_payment_source()
. - Method
LLMS_Controller_Orders::confirm_pending_order()
is deprecated in favor ofLLMS_Controller_Checkout::confirm_pending_order()
. - Method
LLMS_Controller_Orders::create_pending_order()
is deprecated in favor ofLLMS_Controller_Checkout::create_pending_order()
. - Method
LLMS_Controller_Orders::switch_payment_source()
is deprecated in favor ofLLMS_Controller_Checkout::switch_payment_source()
. - Deprecated hook
llms_{$method}_title
in favor ofllms_{$method}_refund_title
.
Developer Notes
- The
LLMS_Student
object can be instantiated as an empty object and bypass current user autoloading. In the future this may affect integrations using thelifterlms_new_pending_order
action hook which will receive an "empty" student object during order setup by gateways utilizing new AJAX-powered checkout endpoints. - Improved payment gateway secure string logging by adding a method,
add_secure_string()
allowing developers to add secure strings during runtime without the necessity of registering the strings using filters. - Implemented new gateway feature:
modify_recurring_payments
. #2176 - Added new filter
llms_transaction_can_be_refunded
enabling custom refund restrictions to be applied to a transaction.