Untitled

1. In Shopify, go to ShopifySettingsCheckout

2. Edit Additional scripts section

  1. Go to Additional scripts section and add the following code to the Order status page box. See screenshot below.

    <script type="text/javascript">
    document.addEventListener("DOMContentLoaded", function(event) { 
      if(document.getElementsByClassName('map')[0]){
        document.getElementsByClassName('map')[0].parentNode.remove();
      }
    });
    </script>
    

    Untitled