Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Last active May 9, 2016 09:31
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 jameskoster/fe69d1004d6776fa300ed9d0ed914c07 to your computer and use it in GitHub Desktop.
Save jameskoster/fe69d1004d6776fa300ed9d0ed914c07 to your computer and use it in GitHub Desktop.
Storefront - remove account link from handheld footer bar
add_filter( 'storefront_handheld_footer_bar_links', 'jk_remove_handheld_footer_links' );
function jk_remove_handheld_footer_links( $links ) {
unset( $links['my-account'] );
unset( $links['search'] );
unset( $links['cart'] );
return $links;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment