Automattic\WooCommerce\Admin\Features\OnboardingTasks
TaskList::possibly_remove_reminder_bar()
Remove reminder bar four weeks after store creation.
Method of the class: TaskList{}
No Hooks.
Returns
null
. Nothing (null).
Usage
$result = TaskList::possibly_remove_reminder_bar();
TaskList::possibly_remove_reminder_bar() TaskList::possibly remove reminder bar code WC 9.8.5
public static function possibly_remove_reminder_bar() { $bar_hidden = get_option( self::REMINDER_BAR_HIDDEN_OPTION, 'no' ); $active_for_four_weeks = WCAdminHelper::is_wc_admin_active_for( WEEK_IN_SECONDS * 4 ); if ( 'yes' === $bar_hidden || ! $active_for_four_weeks ) { return; } update_option( self::REMINDER_BAR_HIDDEN_OPTION, 'yes' ); }