Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Created August 29, 2017 04:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SiR-DanieL/e1c7acbfdab1394e4f08beef094e2a77 to your computer and use it in GitHub Desktop.
Save SiR-DanieL/e1c7acbfdab1394e4f08beef094e2a77 to your computer and use it in GitHub Desktop.
add_action( 'init', 'remove_footer_checkout' );
function remove_footer_checkout() {
if ( is_checkout() ) {
remove_action( 'storefront_footer', 'storefront_handheld_footer_bar', 999 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment