The conditional is_category()will return true if you are on the categories archive page.
, is_product() :
if ( is_product() && has_term( 'Mobile Phones', 'product_cat' ) ) {
$tabs['custom_specification'] = array( 'title' => __( 'Specification', 'woocommerce' ), 'priority' => 50, 'callback' => 'woo_custom_specification_content' );
}
, , :
if( is_product() && has_category( 'Mobile Phones' ) ) {
$tabs['custom_specification'] = array( 'title' => __( 'Specification', 'woocommerce' ), 'priority' => 50, 'callback' => 'woo_custom_specification_content' );
}
@edit: return $tabs; }.
: