Skip to content

Instantly share code, notes, and snippets.

View mpdevcl's full-sized avatar

Matías Pérez mpdevcl

View GitHub Profile
// ==UserScript==
// @name Custom height - whatsapp.com
// @match https://web.whatsapp.com/
// @grant GM_addStyle
// @version 1.0
// @description Quita el scroll en versiones recientes de WhatsApp Web.
// @run-at document-end
// ==/UserScript==
GM_addStyle('.h70RQ.two { min-height: auto !important; }');
@mpdevcl
mpdevcl / woocommerce_events.md
Created August 11, 2020 17:43
WooCommerce JS Events

WooCommerce JS Events

Source

Checkout

$( document.body ).trigger( 'init_checkout' );
$( document.body ).trigger( 'payment_method_selected' );
$( document.body ).trigger( 'update_checkout' );
$( document.body ).trigger( 'updated_checkout' );
$( document.body ).trigger( 'checkout_error' );