@@ -289,7 +289,7 @@ public function register_meta_boxes() {
289289
290290 // Add in our "normal" meta boxes
291291 add_meta_box ( 'form_data ' , esc_html__ ( 'Extra Form Description ' , 'pff-paystack ' ), [ $ this , 'form_data ' ], 'paystack_form ' , 'normal ' , 'default ' );
292- add_meta_box ( 'email_data ' , esc_html__ ( 'Email Receipt Settings ' , 'pff-paystack ' ), [ $ this , 'email_data ' ], 'paystack_form ' , 'normal ' , 'default ' );
292+ // add_meta_box( 'email_data', esc_html__( 'Email Receipt Settings', 'pff-paystack' ), [ $this, 'email_data' ], 'paystack_form', 'normal', 'default' );
293293
294294 // Add in our "side" meta boxes
295295 add_meta_box ( 'recuring_data ' , esc_html__ ( 'Recurring Payment ' , 'pff-paystack ' ), [ $ this , 'recur_data ' ], 'paystack_form ' , 'side ' , 'default ' );
@@ -455,7 +455,7 @@ public function recur_data(){
455455 *
456456 * @return void
457457 */
458- public function email_data () {
458+ /* public function email_data() {
459459 $html = [];
460460 // Echo out the field
461461 $html[] = '<p>' . esc_html__('Send an invoice when a payment is attempted:', 'pff-paystack') . '</p>';
@@ -478,7 +478,7 @@ public function email_data() {
478478 $html[] = '<textarea rows="6" name="_message" class="widefat">' . $this->meta['message'] . '</textarea>';
479479
480480 echo wp_kses( implode( '', $html ), $this->allowed_html );
481- }
481+ }*/
482482
483483 /**
484484 * Add the quantity metabox
0 commit comments