Hide the Add Address button - xmpie-users/uStore-js GitHub Wiki

In some cases, store owners may want to set the billing address for each customer and prevent the customer from changing it.

Alt

This JavaScript will hide the Add Address button on the customer checkout:

<script type="text/javascript"> 
  $(document).ready(function() { 
    $("#ctl00_cphMainContent_BillingAddress_lnkAddAddress").hide(); 
  }); 
</script>

For information on how to add JavaScript to your store: How to add JavaScript to a storefront.

⚠️ **GitHub.com Fallback** ⚠️