Skip to content

Instantly share code, notes, and snippets.

@tom-it
Last active January 29, 2019 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tom-it/5759346f54940650175ea4f9f88e4b5a to your computer and use it in GitHub Desktop.
Save tom-it/5759346f54940650175ea4f9f88e4b5a to your computer and use it in GitHub Desktop.
checkout.liquid add box to last step
<script>
(function ( $ ) {
$(document).ready(function(){
if(Shopify.Checkout.step == 'payment_method') {
$('.step__footer').before('<div style="margin-top:10px;background-color:#ccc;padding:10px;">Your custom message here</div>');
}
});
}(jQuery));
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment