1. Documentation /
  2. Remove the handheld navigation bar

Remove the handheld navigation bar

Storefront 2.0 introduced a navigation bar to the responsive design, including links to the account section, search form and cart.

The handheld footer bar in action
The handheld footer bar in action
To remove this feature, use this snippet:
add_action( 'init', 'jk_remove_storefront_handheld_footer_bar' );
function jk_remove_storefront_handheld_footer_bar() {
remove_action( 'storefront_footer', 'storefront_handheld_footer_bar', 999 );
}
view raw functions.php hosted with ❤ by GitHub

Note: This is a Developer level doc. If you are unfamiliar with code and resolving potential conflicts, select a WooExpert or Developer for assistance. We are unable to provide support for customizations under our  Support Policy.