Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
WC_Install::maybe_enable_setup_wizard()
See if we need the wizard or not.
Description Description
Source Source
File: includes/class-wc-install.php
private static function maybe_enable_setup_wizard() { if ( apply_filters( 'woocommerce_enable_setup_wizard', true ) && self::is_new_install() ) { WC_Admin_Notices::add_notice( 'install', true ); set_transient( '_wc_activation_redirect', 1, 30 ); } }
Changelog Changelog
Version | Description |
---|---|
3.2.0 | Introduced. |