Skip to content

Instantly share code, notes, and snippets.

@mrfoxtalbot
Last active June 17, 2017 21:13
Show Gist options
  • Save mrfoxtalbot/eccb9643d6c5b68d8281e75d1fb79ba7 to your computer and use it in GitHub Desktop.
Save mrfoxtalbot/eccb9643d6c5b68d8281e75d1fb79ba7 to your computer and use it in GitHub Desktop.
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 );
?>
@Miyagi-karate
Copy link

Great, thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment