Issue #2245 / Disable Integrations Tab if empty
This commit is contained in:
parent
44013d4480
commit
e33fb78cf6
|
@ -226,6 +226,9 @@ if ( ! function_exists( 'woocommerce_settings' ) ) {
|
|||
'email' => __( 'Emails', 'woocommerce' ),
|
||||
'integration' => __( 'Integration', 'woocommerce' )
|
||||
);
|
||||
|
||||
if ( ! count( $woocommerce->integrations->get_integrations() ) )
|
||||
unset( $tabs['integration'] );
|
||||
|
||||
$tabs = apply_filters('woocommerce_settings_tabs_array', $tabs);
|
||||
|
||||
|
|
Loading…
Reference in New Issue