Skip to content

Instantly share code, notes, and snippets.

View ricardodelfino's full-sized avatar
🔨
Building

Ricardo Delfino ricardodelfino

🔨
Building
View GitHub Profile
@mrfoxtalbot
mrfoxtalbot / disable-woocommerce-sticky-checkout.php
Last active June 17, 2017 21:13
Disable WooCommerce Sticky scroll in checkout
<?php
function removebadsticky_woocommerce_scripts() {
wp_deregister_script( 'storefront-sticky-payment');
}
add_action( 'wp_enqueue_scripts', 'removebadsticky_woocommerce_scripts' , 90 );
?>