All Projects → sdinteractive → SomethingDigital_AjaxAddToCart

sdinteractive / SomethingDigital_AjaxAddToCart

Licence: MIT license
No description or website provided.

Programming Languages

javascript
184084 projects - #8 most used programming language
PHP
23972 projects - #3 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to SomethingDigital AjaxAddToCart

magento-jobqueue
A database backed asynchronous job queue for Magento
Stars: ✭ 52 (+173.68%)
Mutual labels:  magento, magento-1, magento-extension
magento-meanbee-pwa
Progressive Web App extension for Magento 1
Stars: ✭ 75 (+294.74%)
Mutual labels:  magento, magento-1, magento-extension
Meanbee CacheViewer
🔍 A Magento 1.x extension to analyse the contents of your cache.
Stars: ✭ 72 (+278.95%)
Mutual labels:  magento-1, magento-extension
Module Rocketjavascript
Stars: ✭ 37 (+94.74%)
Mutual labels:  magento, magento-extension
Magento-SVG-Helper
Helper that allows you to echo SVG into markup from skin or media directory
Stars: ✭ 16 (-15.79%)
Mutual labels:  magento-1, magento-extension
module-dsu-client
No description or website provided.
Stars: ✭ 17 (-10.53%)
Mutual labels:  magento, magento-extension
module-dsu
No description or website provided.
Stars: ✭ 18 (-5.26%)
Mutual labels:  magento, magento-extension
Magento Xtest
Magento Testing Framework
Stars: ✭ 52 (+173.68%)
Mutual labels:  magento, magento-extension
Magento Turpentine
A Varnish extension for Magento.
Stars: ✭ 531 (+2694.74%)
Mutual labels:  magento, magento-extension
Correios
Módulo de frete para Magento com tracking
Stars: ✭ 106 (+457.89%)
Mutual labels:  magento, magento-extension
Magentoextensions
Magento Extension Directory 1> Themes Switcher 2> Default Shipping On Cart 3> Upshare 4> Product Image Optimizer 5> Idealo Product Export 6> magento Google shopping Api v2 7>Google feed and facebook feed 8> Pdf upload in magento media wysiwyg 9> Product Image optimizer. If You want magento 2 extensions 1>Advance Layred Navigation(including SEO URL, Rating as filter, slider filter, Ajax Filtering), 2>Attribute Pages with SEO and Custom URL key(you can do all kind of seo on those pages with logos) 3>Improved Sorting (Enable users to view products by options as 'Best Sellers', 'Top Rated', 'Most Viewed' etc.) 4>Custom Stock Status(Add statuses to products automatically or manually, Create multiple custom stock statuses, Upload special icons for stock statuses) 5>Product Labels(Using this extension you can add any label to your produts on product page or category page) 6>Custom Order Number(Using this extension you can customize order, invoice, shippment, credit memo Number) 7>All type of file upload in Wysiwyg(pdf, zip, doc etc file upload in wysiwyg), 8>Infinite Scroll, 9>Multiple FlatRate Shipping, 10>Open Api,Google api for currency Rates, 11>Product Attribute's Description, 12>Store and Currency switcher according to Ip address Please Contact me and All those extensions are paid with installation and configuration are free support.
Stars: ✭ 106 (+457.89%)
Mutual labels:  magento, magento-extension
Algoliasearch Magento
Algolia Search integration for Magento 1 - compatible with versions from 1.6.x to 1.9.x
Stars: ✭ 163 (+757.89%)
Mutual labels:  magento, magento-extension
module-blog-m22
Fixes for Blog on Magento 2.2.x
Stars: ✭ 21 (+10.53%)
Mutual labels:  magento, magento-extension
Magento2 Form Field Manager
Customer and Address Form Fields Manager for Magento2
Stars: ✭ 21 (+10.53%)
Mutual labels:  magento, magento-extension
magento2-guest-to-customer
Guest to Customer for Magento2 - Quickly and easily convert existing guest checkout customers to registered customers.
Stars: ✭ 66 (+247.37%)
Mutual labels:  magento, magento-extension
Magento1 Sl Si
🇸🇮 Magento 1 Slovenian translations
Stars: ✭ 5 (-73.68%)
Mutual labels:  magento, magento-extension
Anonymizer
Anonymizes Magento Customer and Order data
Stars: ✭ 46 (+142.11%)
Mutual labels:  magento, magento-extension
magento2
For any issues or questions please get in touch with us via [email protected]
Stars: ✭ 15 (-21.05%)
Mutual labels:  magento, magento-extension
Magento-Quickorder
Magento Quickorder module, enables bulk order creation by inputting SKUs & quantities.
Stars: ✭ 30 (+57.89%)
Mutual labels:  magento, magento-extension
magento-address-autocomplete
A Magento module that uses the Google Places API to populate the address fields on the checkout.
Stars: ✭ 14 (-26.32%)
Mutual labels:  magento, magento-extension

SomethingDigital_AjaxAddToCart

Objective

The aim is to provide a drop-in replacement for the tradition card add form post, which requires a redirect in vanilla Magento.

Requirements

  • Magento 1.9+ (RWD theme compatibility)
  • jQuery

Configurable JS Options

Option Default Description
scroll false This will scroll the page up and open mini cart on success instead of displaying a success popup.
scrollDuration 250 Duration of scroll animation in ms.
popupDuration 5 Duration in seconds that the pop up notification displays.
triggerMinicart true This will show the minicart when product added successfully.

Events Fired through JS

sd_ajaxaddtocart:success

After a product is successfully added to the cart, a success event called sd_ajaxaddtocart:success is fired. It is easy to hook into this with jQuery. An example of listening for the event and firing a notification using jGrowl:

  $j(document).on( "sd_ajaxaddtocart:success", function(e, data) {
    $j.jGrowl(data.message, { sticky: true, header: 'Added to Basket', footer: '<a href="<?php echo Mage::getBaseUrl() ?>checkout/cart" class="button--secondary">Go to basket</a>' });
  });

sd_ajaxaddtocart:failure

If a product can not be successfully added to the cart, a failure event called sd_ajaxaddtocart:failure is fired.

License

The MIT License

Copyright (c) 2015 Something Digital http://www.somethingdigital.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].