Skip to content

Commit

Permalink
Regarding #962 -- updates to Email Options Tab
Browse files Browse the repository at this point in the history
  • Loading branch information
mathetos committed Aug 29, 2016
1 parent 797741c commit 3f4b854
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions includes/admin/class-give-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -678,9 +678,14 @@ public function give_settings( $active_tab ) {
),
array(
'id' => 'disable_admin_notices',
'name' => esc_html__( 'Disable Admin Notifications', 'give' ),
'desc' => esc_html__( 'Check this box if you do not want to receive emails when new donations are made.', 'give' ),
'type' => 'checkbox'
'name' => esc_html__( 'Send Admin Notification Emails?', 'give' ),
'desc' => esc_html__( 'Control whether Admin notification emails are sent or not.', 'give' ),
'type' => 'radio_inline',
'default' => 'on',
'options' => array(
'on' => esc_html__( 'Yes', 'give' ),
'' => esc_html__( 'No', 'give' )
)
)
)
)
Expand Down

0 comments on commit 3f4b854

Please sign in to comment.