Merge pull request #2246 from entr/patch-2

Issue #2245 / Disable Integrations Tab if empty
This commit is contained in:
Coen Jacobs 2013-01-17 00:43:18 -08:00
commit 93e55e19e0
1 changed files with 3 additions and 0 deletions

View File

@ -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);