Automattic\WooCommerce\Admin\Features\OnboardingTasks

TaskList::possibly_remove_reminder_barpublic staticWC 1.0

Deprecated since 10.9.0 The reminder bar feature was removed; this method is now a no-op. Retained as a stub to avoid fatal errors in third-party code that references the method.. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Possibly remove the task list reminder bar.

Method of the class: TaskList{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = TaskList::possibly_remove_reminder_bar(): void;

Changelog

Deprecated since 10.9.0 The reminder bar feature was removed; this method is now a no-op.
Retained as a stub to avoid fatal errors in third-party code that
references the method.

TaskList::possibly_remove_reminder_bar() code WC 10.9.4

public static function possibly_remove_reminder_bar(): void {
	wc_deprecated_function( __METHOD__, '10.9.0' );
}