Title: pbitcafe's Replies | WordPress.org

---

# pbitcafe

  [  ](https://wordpress.org/support/users/pbitcafe/)

 *   [Profile](https://wordpress.org/support/users/pbitcafe/)
 *   [Topics Started](https://wordpress.org/support/users/pbitcafe/topics/)
 *   [Replies Created](https://wordpress.org/support/users/pbitcafe/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/pbitcafe/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/pbitcafe/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/pbitcafe/engagements/)
 *   [Favorites](https://wordpress.org/support/users/pbitcafe/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Storefront] Handheld menu Search doesn’t work](https://wordpress.org/support/topic/handheld-menu-search-doesnt-work/)
 *  [pbitcafe](https://wordpress.org/support/users/pbitcafe/)
 * (@pbitcafe)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/handheld-menu-search-doesnt-work/#post-13022646)
 * 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;
    }
 * add_filter( ‘storefront_handheld_footer_bar_links’, ‘jk_add_home_link’ );
    function
   jk_add_home_link( $links ) {
 *  $new_links = array(
    ‘home’ => array( ‘priority’ => 20, ‘callback’ => ‘jk_home_link’,),‘
   search’ => array( ‘priority’ => 30, ‘callback’ => ‘storefront_handheld_footer_bar_search_link’,),‘
   my-account’ => array( ‘priority’ => 40, ‘callback’ => ‘storefront_handheld_footer_bar_account_link’,),);
 *  $links = array_merge( $new_links, $links );
 *  return $links;
    }
 * function jk_home_link() {
    echo ‘[‘ . __( ‘Home’ ) . ‘](https://wordpress.org/support/users/pbitcafe/replies/&apos; . esc_url( home_url( &apos;/&apos; ) ) . &apos;?output_format=md)‘;}

Viewing 1 replies (of 1 total)