Remove anchor tag button

Remove anchor tag button functionality.

if(!function_exists('wdr_remove_coupon_anchor_tag_in_cart_html')) {
    function wdr_remove_coupon_anchor_tag_in_cart_html($coupon_html, $coupon, $discount_amount_html) {
         $coupon_html = str_replace('[Remove]', '', $coupon_html);
        return strip_tags($coupon_html);
    }
}
add_filter('woocommerce_cart_totals_coupon_html', 'wdr_remove_coupon_anchor_tag_in_cart_html', 10, 3);


if(!function_exists('wdr_remove_coupon_anchor_tag_in_cart_html')) {
    function wdr_remove_coupon_anchor_tag_checkout($coupon_label) {
         $coupon_label = str_replace('[Remove]', '', $coupon_label);
    return strip_tags($coupon_label);
  }
}
add_filter('woocommerce_checkout_coupon_label', 'wdr_remove_coupon_anchor_tag_checkout', 10);