LLMS_Order::supports_modify_recurring_payments()
Determine whether the recurring payment for this order can be modified.
Description Description
Depends on whether the order’s gateway supports.
Return Return
(bool)
Source Source
File: includes/models/model.llms.order.php
public function supports_modify_recurring_payments() { $gateway = $this->get_gateway(); return is_wp_error( $gateway ) ? false : $gateway->supports( 'modify_recurring_payments', $this ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
7.0.0 | Introduced. |