woocommerce_newly_installed action-hookWC 6.5.0

Run when WooCommerce has been installed for the first time.

Usage

add_action( 'woocommerce_newly_installed', 'wp_kama_woocommerce_newly_installed_action' );

/**
 * Function for `woocommerce_newly_installed` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_newly_installed_action(){

	// action...
}

Changelog

Since 6.5.0 Introduced.

Where the hook is called

WC_Install::newly_installed()
woocommerce_newly_installed
woocommerce/includes/class-wc-install.php 391
do_action( 'woocommerce_newly_installed' );

Where the hook is used in WooCommerce

woocommerce/includes/admin/notes/class-wc-notes-refund-returns.php 27
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'on_newly_installed' ) );
woocommerce/includes/class-wc-install.php 355
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'maybe_enable_hpos' ), 20 );
woocommerce/includes/class-wc-install.php 356
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'add_coming_soon_option' ), 20 );
woocommerce/includes/class-wc-install.php 357
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'enable_email_improvements_for_newly_installed' ), 20 );
woocommerce/includes/class-wc-install.php 358
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'enable_customer_stock_notifications_signups' ), 20 );
woocommerce/includes/class-wc-install.php 359
add_action( 'woocommerce_newly_installed', array( __CLASS__, 'enable_analytics_scheduled_import' ), 20 );
woocommerce/includes/class-woocommerce.php 327
add_action( 'woocommerce_newly_installed', 'wc_set_hooked_blocks_version', 10 );