WC_Gateway_Paypal::set_transact_onboarding_completepublicWC 1.0

Set the Transact onboarding as complete.

Method of the class: WC_Gateway_Paypal{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WC_Gateway_Paypal = new WC_Gateway_Paypal();
$WC_Gateway_Paypal->set_transact_onboarding_complete();

WC_Gateway_Paypal::set_transact_onboarding_complete() code WC 10.7.0

public function set_transact_onboarding_complete() {
	if ( $this->transact_onboarding_complete ) {
		return;
	}

	$this->update_option( 'transact_onboarding_complete', 'yes' );
	$this->transact_onboarding_complete = true;
}