Option to hide total player performance in event

This commit is contained in:
Brian Miyaji
2014-07-20 00:03:04 +10:00
parent cb492ac7a2
commit 77cb3cdbec
2 changed files with 16 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ class SP_Settings_Events extends SP_Settings_Page {
),
array(
'title' => __( 'Players', 'sportspress' ),
'title' => __( 'Player Performance', 'sportspress' ),
'desc' => __( 'Display players', 'sportspress' ),
'id' => 'sportspress_event_show_players',
'default' => 'yes',
@@ -95,6 +95,14 @@ class SP_Settings_Events extends SP_Settings_Page {
'id' => 'sportspress_event_link_players',
'default' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => '',
),
array(
'desc' => __( 'Display total', 'sportspress' ),
'id' => 'sportspress_event_show_total',
'default' => 'yes',
'type' => 'checkbox',
'checkboxgroup' => 'end',
),