Skip to content

Commit

Permalink
remove meta tag, PFW-676
Browse files Browse the repository at this point in the history
  • Loading branch information
kcppdevelopers committed Sep 22, 2020
1 parent 1398b11 commit 758c3c1
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ public function __construct() {

add_action('woocommerce_after_add_to_cart_button', array($this, 'buy_now_button'), 10);

add_action('wp_head', array($this, 'angelleye_add_header_meta'), 0);
add_action('woocommerce_add_to_cart_redirect', array($this, 'add_to_cart_redirect'), 9999);
add_action('woocommerce_checkout_billing', array($this, 'ec_set_checkout_post_data'));
add_action('woocommerce_available_payment_gateways', array($this, 'ec_disable_gateways'));
Expand Down Expand Up @@ -1353,13 +1352,6 @@ public function angelleye_is_product_already_in_cart($product_id = 0, $quantity
return false;
}

public function angelleye_add_header_meta() {
if ($this->enable_in_context_checkout_flow === 'yes' && $this->enabled == 'yes') {
echo '<meta http-equiv="X-UA-Compatible" content="IE=edge" />';
echo '<meta name="viewport" content="width=device-width, initial-scale=1">';
}
}

public function angelleye_display_custom_message_review_page() {
if (!empty($this->order_review_page_custom_message)) {
if (!is_admin() && is_main_query() && in_the_loop() && is_page() && is_checkout() && $this->function_helper->ec_is_express_checkout()) {
Expand Down

0 comments on commit 758c3c1

Please sign in to comment.