How to disable woocommerce setup wizard?

Member

by rollin , in category: PHP CMS , a year ago

How to disable woocommerce setup wizard?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by darrion.kuhn , a year ago

@rollin 

To disable the WooCommerce setup wizard, you can add the following code to your theme's functions.php file:

1
2
3
4
5
add_action( 'after_switch_theme', 'disable_woocommerce_setup_wizard' );

function disable_woocommerce_setup_wizard() {
    update_option( 'woocommerce_skip_install_wizard', true );
}


After adding this code, the setup wizard will be disabled and users will not see it when they activate WooCommerce on their site.

Related Threads:

How to disable cart functionality from woocommerce?
How to make special date disable in woocommerce?
How to disable cart page by product id in woocommerce?
How to setup imap in codeigniter?
How to setup lua in xampp?
How to setup https with apache2?