WC_Customer::set_is_paying_customer( bool $is_paying_customer )

Set if the user a paying customer.


Description Description


Parameters Parameters

$is_paying_customer

(Required) If is a paying customer.


Top ↑

Source Source

File: includes/class-wc-customer.php

	public function set_is_paying_customer( $is_paying_customer ) {
		$this->set_prop( 'is_paying_customer', (bool) $is_paying_customer );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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