Last active
May 3, 2017 22:02
-
-
Save tiagomatos/903f12b021cf113a9465fefe5cd44dcd to your computer and use it in GitHub Desktop.
Remove 'Shipping Address' from Checkout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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