Skip to content

Instantly share code, notes, and snippets.

@o-nkar
Created January 13, 2021 17:08
Show Gist options
  • Save o-nkar/0860ce74f900d430f88a3fc670ef45b6 to your computer and use it in GitHub Desktop.
Save o-nkar/0860ce74f900d430f88a3fc670ef45b6 to your computer and use it in GitHub Desktop.
Code share
//comment the this line into shop.js
//e(".ajax-success-modal").find(".ajax_qty").text(r);
// and add this code below this line
e.ajax({
type: 'GET',
dataType: 'json',
url: '/cart.js',
success: function(cart){
e(".ajax-success-modal").find(".ajax_qty").text(cart.item_count);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment