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.


Top ↑

Return Return

(bool)


Top ↑

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 );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
7.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.