BSF_License_Manager::is_product_free( int $product_id )

Is product free.


Description


Parameters

$product_id

(int) (Required) Product ID.


Source

File: admin/bsf-core/class-bsf-license-manager.php

		public static function is_product_free( $product_id ) {
			$license_manager = self::instance();
			$is_free         = $license_manager->bsf_get_product_info( $product_id, 'is_product_free' );

			return $is_free;
		}


User Contributed Notes

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