Created
April 12, 2023 12:55
-
-
Save stuartduff/7660c17dc78b51051ba71a0e76b20e5c to your computer and use it in GitHub Desktop.
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