diff --git a/includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php b/includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php index eefb569a..aacad8ae 100644 --- a/includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php +++ b/includes/admin/post-types/meta-boxes/class-sp-meta-box-event-teams.php @@ -21,62 +21,81 @@ class SP_Meta_Box_Event_Teams { public static function output( $post ) { $limit = get_option( 'sportspress_event_teams', 2 ); $teams = (array) get_post_meta( $post->ID, 'sp_team', false ); - for ( $i = 0; $i < $limit; $i ++ ): - $team = array_shift( $teams ); - ?> -
-

- 'sp_team', - 'name' => 'sp_team[]', - 'class' => 'sportspress-pages', - 'show_option_none' => __( '— None —', 'sportspress' ), - 'values' => 'ID', - 'selected' => $team, - 'chosen' => true, - 'tax_query' => array(), - ); - if ( 'yes' == get_option( 'sportspress_event_filter_teams_by_league', 'no' ) ) { - $league_id = sp_get_the_term_id( $post->ID, 'sp_league', 0 ); - if ( $league_id ) { - $args['tax_query'][] = array( - 'taxonomy' => 'sp_league', - 'terms' => $league_id, - ); - } - } - if ( 'yes' == get_option( 'sportspress_event_filter_teams_by_season', 'no' ) ) { - $season_id = sp_get_the_term_id( $post->ID, 'sp_season', 0 ); - if ( $season_id ) { - $args['tax_query'][] = array( - 'taxonomy' => 'sp_season', - 'terms' => $season_id, - ); - } - } - if ( ! sp_dropdown_pages( $args ) ) { - unset( $args['tax_query'] ); - sp_dropdown_pages( $args ); - } + if ( $limit ) { + for ( $i = 0; $i < $limit; $i ++ ): + $team = array_shift( $teams ); ?> -

- - - +
$post_type ) { - sp_post_checklist( $post->ID, $post_type, ( 0 == $index ? 'block' : 'none' ), array( 'sp_league', 'sp_season', 'sp_current_team' ), $i ); - } - ?> - - + endfor; + } else { + ?> +

'sp_team', + 'name' => 'sp_team[]', + 'selected' => $teams, + 'values' => 'ID', + 'class' => 'widefat', + 'property' => 'multiple', + 'chosen' => true, + 'placeholder' => __( 'None', 'sportspress' ), + ); + if ( ! sp_dropdown_pages( $args ) ): + sp_post_adder( 'sp_team', __( 'Add New', 'sportspress' ) ); + endif; + } } /** diff --git a/includes/admin/settings/class-sp-settings-events.php b/includes/admin/settings/class-sp-settings-events.php index e956f6db..51a1020a 100644 --- a/includes/admin/settings/class-sp-settings-events.php +++ b/includes/admin/settings/class-sp-settings-events.php @@ -116,7 +116,7 @@ class SP_Settings_Events extends SP_Settings_Page { 'desc' => __( 'teams', 'sportspress' ), 'type' => 'number', 'custom_attributes' => array( - 'min' => 1, + 'min' => 0, 'step' => 1 ), ),