Coming Back Soon
Product: Half Corn On The CobBrand: ArdoDescription: Everyone loves corn on the cob – it tastes great, goes well with seasonings, and is fun to eat! Corn on the cob is a delicious, versatile side dish that's easy to prepare on the...
Coming Back Soon
Product: Broccoli Florets Brand: ArdoDescription: Broccoli is a great source of vitamins K and C. Steamed broccoli may be one of the healthiest ways to cook broccoli because it's quick and has a lot of nutrients and vitamins or can be cooked...
Coming Back Soon
Product: Green Asparagus Brand: Ardo Description: Frozen is a good choice, but if you use frozen spinach, simply let it thaw and use it in your recipe. There's no need to cook it again. It's been cooked once, before processing, it has an important B vitamin...
Coming Back Soon
Product: Whole Green BeansBrand: ArdoDescription: Frozen beans is a good choice, it can be cooked in a variety of ways, such as steaming, roasting or sautéing. A very good side with your meal.Size: 2.5kgPackaging: 2.5kg x 1Status: FrozenOrigin: BelgiumCode: 30712
Coming Back Soon
Product: Spinach Leaf Portions Brand: ArdoDescription: Frozen spinach works best with casseroles, sautes, soups and warm, cooked foods and also can be used with your dips, pastas and soups.Size: 2.5kgPackaging: 2.5kg x 1Status: FrozenOrigin: BelgiumCode: 30720
Coming Back Soon
Product: Cauliflower FloretsBrand: ArdoDescription: You can enjoy raw cauliflower florets as it is with a dip or it can also be cooked in a variety of ways, such as steaming, roasting or sautéing. It makes an excellent side dish or can be...
Coming Back Soon
Product: Edamame Soya Beans Brand: Shefu Gourmet Description: Edamame soya beans are the modern and essential ingredient for all kitchens. The options are endless; roast with a pinch of Himalayan salt and eat as a healthy snack, add them in your...
Coming Back Soon
Product: Edamame Without Shell Brand: Shefu Gourmet Description: Edamame without the shell is invigorating, healthy, and delectable. If you're someone who loves their edamame cooked without the shell, your best bet is to order this shelled edamame that you can simply store in...
' + html + '
'; switch (_config.feedbackPosition) { case 'aboveForm': $addToCartForm.before(feedback); break; case 'belowForm': $addToCartForm.after(feedback); break; case 'nextButton': default: $addToCartForm.find(_config.addToCartBtnSelector).after(feedback); break; } // If you use animate.css // $('.ajaxified-cart-feedback').addClass('animated bounceInDown'); $('.ajaxified-cart-feedback').slideDown(); }; var _setText = function($button, label) { if ($button.children().length) { $button.children().each(function() { if ($.trim($(this).text()) !== '') { $(this).text(label); } }); } else { $button.val(label).text(label); } }; var _init = function() { $(document).ready(function() { $(_config.addToCartFormSelector).submit(function(e) { e.preventDefault(); var $addToCartForm = $(this); var $addToCartBtn = $addToCartForm.find(_config.addToCartBtnSelector); _setText($addToCartBtn, _config.addingToCartBtnLabel); $addToCartBtn.addClass('disabled').prop('disabled', true); // Add to cart. $.ajax({ url: _config.shopifyAjaxAddURL, dataType: 'json', type: 'post', data: $addToCartForm.serialize(), success: function(itemData) { // Re-enable add to cart button. $addToCartBtn.addClass('inverted'); _setText($addToCartBtn, _config.addedToCartBtnLabel); // _showFeedback('success',' Added to cart!',$addToCartForm); window.setTimeout(function(){ $addToCartBtn.prop('disabled', false).removeClass('disabled').removeClass('inverted'); _setText($addToCartBtn,_config.addToCartBtnLabel); }, _config.howLongTillBtnReturnsToNormal); // Update cart count and show cart link. $.getJSON(_config.shopifyAjaxCartURL, function(cart) { if (_config.cartCountSelector && $(_config.cartCountSelector).length) { var value = $(_config.cartCountSelector).html() || '0'; $(_config.cartCountSelector).html(value.replace(/[0-9]+/,cart.item_count)).removeClass('hidden-count'); } if (_config.cartTotalSelector && $(_config.cartTotalSelector).length) { if (typeof Currency !== 'undefined' && typeof Currency.moneyFormats !== 'undefined') { var newCurrency = ''; if ($('[name="currencies"]').length) { newCurrency = $('[name="currencies"]').val(); } else if ($('#currencies span.selected').length) { newCurrency = $('#currencies span.selected').attr('data-currency'); } if (newCurrency) { $(_config.cartTotalSelector).html('' + Shopify.formatMoney(Currency.convert(cart.total_price, "AED", newCurrency), Currency.money_format[newCurrency]) + ''); } else { $(_config.cartTotalSelector).html(Shopify.formatMoney(cart.total_price, "${{ amount }} AED {{ amount }} ")); } } else { $(_config.cartTotalSelector).html(Shopify.formatMoney(cart.total_price, "${{ amount }} AED {{ amount }} ")); } }; }); }, error: function(XMLHttpRequest) { var response = eval('(' + XMLHttpRequest.responseText + ')'); response = response.description; if (response.slice(0,4) === 'All ') { _showFeedback('error', response.replace('All 1 ', 'All '), $addToCartForm); $addToCartBtn.prop('disabled', false); _setText($addToCartBtn, _config.soldOutBtnLabel); $addToCartBtn.prop('disabled',true); } else { _showFeedback('error', ' ' + response, $addToCartForm); $addToCartBtn.prop('disabled', false).removeClass('disabled'); _setText($addToCartBtn, _config.addToCartBtnLabel); } } }); return false; }); }); }; return { init: function(params) { // Configuration params = params || {}; // Merging with defaults. $.extend(_config, params); // Action $(function() { _init(); }); }, getConfig: function() { return _config; } } })(jQuery); Shopify.AjaxifyCart.init();