Skip to content

Instantly share code, notes, and snippets.

@tiagomatos
Last active May 3, 2017 22:02
Show Gist options
  • Save tiagomatos/903f12b021cf113a9465fefe5cd44dcd to your computer and use it in GitHub Desktop.
Save tiagomatos/903f12b021cf113a9465fefe5cd44dcd to your computer and use it in GitHub Desktop.
Remove 'Shipping Address' from Checkout
<script type="text/javascript">
$( document ).ready(function() {
$('#shipping_address_same_as_shipping').hide(); // removes the checklist button
$('#shipping_address h2').text('{% t "Billing Address" %}'); // change text
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment