Remove WooCommerce Admin from recommended plugins (since it's in core).
This commit is contained in:
parent
cb90b4d3bc
commit
ef1ffbff59
|
@ -187,8 +187,7 @@ class WC_Admin_Setup_Wizard {
|
|||
return $this->should_show_theme()
|
||||
|| $this->should_show_automated_tax()
|
||||
|| $this->should_show_mailchimp()
|
||||
|| $this->should_show_facebook()
|
||||
|| $this->should_show_wc_admin();
|
||||
|| $this->should_show_facebook();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2085,17 +2084,6 @@ class WC_Admin_Setup_Wizard {
|
|||
) );
|
||||
endif;
|
||||
|
||||
if ( $this->should_show_wc_admin() ) :
|
||||
$this->display_recommended_item( array(
|
||||
'type' => 'wc_admin',
|
||||
'title' => __( 'WooCommerce Admin', 'woocommerce' ),
|
||||
'description' => __( 'Manage your store\'s reports and monitor key metrics with a new and improved interface and dashboard.', 'woocommerce' ),
|
||||
'img_url' => WC()->plugin_url() . '/assets/images/obw-woocommerce-admin-icon.svg',
|
||||
'img_alt' => __( 'WooCommerce Admin icon', 'woocommerce' ),
|
||||
'plugins' => array( array( 'name' => __( 'WooCommerce Admin', 'woocommerce' ), 'slug' => 'woocommerce-admin' ) ),
|
||||
) );
|
||||
endif;
|
||||
|
||||
if ( $this->should_show_mailchimp() ) :
|
||||
$this->display_recommended_item( array(
|
||||
'type' => 'mailchimp',
|
||||
|
|
Loading…
Reference in New Issue