Skip to content

Instantly share code, notes, and snippets.

View Miyagi-karate's full-sized avatar

Miyagi Miyagi-karate

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 );
?>