Last active
February 1, 2023 17:41
-
-
Save schmoove/5640937 to your computer and use it in GitHub Desktop.
A handy jQuery plugin for updating the Shopify Cart via their AJAX API
This file contains 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
/* | |
* Project: Shopify AJAX Cart Plugin | |
* Description: Provides AJAX cart functionality for interacting with the Shopify AJAX API so you don't need an "Update Cart" button | |
* Dependency: jQuery 1.6+ | |
* Author: Ryan Marshall ([email protected]) | |
* License: Free | |
* Usage: | |
* | |
* $('#cart-form').shopifyAJAXCart({ | |
* item: '.line-item-container', | |
* item_total: '.line-item-total', | |
* item_qty: '.line-item-qty', | |
* subtotal: '.cart-total-price' | |
* }); | |
* | |
*/ | |
;(function ( $, window, document, undefined ) { | |
var pluginName = 'shopifyAJAXCart', | |
defaults = { | |
propertyName: "value" | |
}; | |
function Plugin( element, options ) { | |
this.element = element; | |
this.options = $.extend( {}, defaults, options ); | |
this._defaults = defaults; | |
this._name = 'shopifyAJAXCart'; | |
this.init(); | |
} | |
Plugin.prototype = { | |
init: function() { | |
var item = this.options.item, | |
item_total = this.options.item_total, | |
item_qty = this.options.item_qty, | |
subtotal = $(this.options.subtotal); | |
// Change line item quantity | |
$(item_qty).change(function() { | |
var qty = $(this).val(), | |
this_item = $(this).closest(item), | |
variant_id = this_item.data('variant-id'), | |
this_item_total = this_item.find(item_total); | |
$.ajax({ | |
type: 'POST', | |
url: '/cart/change.js', | |
dataType: 'json', | |
data: { | |
quantity: qty, | |
id: variant_id | |
}, | |
success: function(cart) { | |
if ( qty == 0 ) { | |
this_item.remove(); | |
} else { | |
$.each(cart.items,function(index,row) { | |
if ( variant_id == row.variant_id ) this_item_total.html( '$' + parseFloat(row.line_price / 100).toFixed(2) ); | |
}); | |
} | |
subtotal.html( '$' + parseFloat(cart.total_price / 100).toFixed(2) ); | |
}, | |
error: function(response) { | |
alert(response); | |
} | |
}); | |
}); | |
// Remove line item | |
$(this.options.item_remove).click(function(e) { | |
e.preventDefault(); | |
$(this).closest(item).find(item_qty).val(0); | |
$(this).closest(item).find(item_qty).trigger('change'); | |
}); | |
} | |
}; | |
$.fn.shopifyAJAXCart = function ( options ) { | |
return this.each(function () { | |
if (!$.data(this, "plugin_" + pluginName)) { | |
$.data(this, "plugin_" + pluginName, new Plugin( this, options )); | |
} | |
}); | |
}; | |
})( jQuery, window, document ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @schmoove, can you add some implementation instructions? I think this will help a lot of people!