Skip to content

Commit

Permalink
Express Checkout - Reference Transaction display adjustment necessary…
Browse files Browse the repository at this point in the history
…, ref #870
  • Loading branch information
kcppdevelopers committed Sep 13, 2017
1 parent 156e0cb commit 5680661
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions angelleye-includes/angelleye-admin-order-payment-process.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AngellEYE_Admin_Order_Payment_Process {

public function __construct() {
if (is_admin() && !defined('DOING_AJAX')) {
add_action('add_meta_boxes', array($this, 'angelleye_add_meta_box'), 99);
add_action('add_meta_boxes', array($this, 'angelleye_add_meta_box'), 10);
add_action('woocommerce_process_shop_order_meta', array($this, 'angelleye_admin_create_reference_order'), 10, 2);
add_action('woocommerce_process_shop_order_meta', array($this, 'angelleye_admin_order_process_payment'), 10, 2);
add_action('angelleye_admin_create_reference_order_action_hook', array($this, 'angelleye_admin_create_reference_order_action'), 10, 1);
Expand All @@ -21,8 +21,8 @@ public function __construct() {
}

public function angelleye_add_meta_box() {
add_meta_box('angelleye_admin_order_payment_process', __('Reference Transaction', 'paypal-for-woocommerce'), array($this, 'admin_order_payment_process'), 'shop_order', 'side', 'high');
add_meta_box('angelleye_admin_order_reference_order', __('Reference Transaction', 'paypal-for-woocommerce'), array($this, 'admin_order_reference_order'), 'shop_order', 'side', 'high');
add_meta_box('angelleye_admin_order_payment_process', __('Reference Transaction', 'paypal-for-woocommerce'), array($this, 'admin_order_payment_process'), 'shop_order', 'side', 'default');
add_meta_box('angelleye_admin_order_reference_order', __('Reference Transaction', 'paypal-for-woocommerce'), array($this, 'admin_order_reference_order'), 'shop_order', 'side', 'default');
}

public function angelleye_hide_reference_order_metabox() {
Expand Down

0 comments on commit 5680661

Please sign in to comment.