Created
January 13, 2021 17:08
-
-
Save o-nkar/0860ce74f900d430f88a3fc670ef45b6 to your computer and use it in GitHub Desktop.
Code share
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
//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