Remove Storefront theme handheld search icon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function remove_handheld_search( $links ) { | |
unset( $links['search'] ); | |
return $links; | |
} | |
add_filter( 'storefront_handheld_footer_bar_links', 'remove_handheld_search' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment