Created
September 22, 2018 14:50
-
-
Save larsmqller/859da8df98b73e0ad40580901847d0b6 to your computer and use it in GitHub Desktop.
Woocommerce cart and checkout triggers
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
//Cart | |
//https://github.com/woocommerce/woocommerce/blob/d30c54ef846b086b96278375b71f7c379d9aa8e8/assets/js/frontend/cart.js | |
$( document.body ).on( 'update_checkout', function(){}); | |
$( document.body ).on( 'updated_cart_totals', function(){}); | |
$( document.body ).on( 'updated_wc_div', function(){}); | |
$( document.body ).on( 'updated_shipping_method', function(){}); | |
$( document.body ).on( 'applied_coupon', function(){}); | |
$( document.body ).on( 'removed_coupon', function(){}); | |
// Checkout | |
// https://github.com/woocommerce/woocommerce/blob/d30c54ef846b086b96278375b71f7c379d9aa8e8/assets/js/frontend/checkout.js | |
$( document.body ).on( 'update_checkout', function(){}); | |
$( document.body ).on( 'init_checkout', function(){}); | |
$( document.body ).on( 'checkout_error', function(){}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment