• Resolved tomnewbie

    (@tomnewbie)


    Hi all

    There is plenty of stuff on this using PHP but I am a bit inexperienced and was wondering if there is just some CSS I can add that will remove the navigation bar from the mobile view?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello tomnewbie,

    try the below code in themes function.php file.

    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 );
    }

    Hope this will helps you.

    Thanks.

    Thread Starter tomnewbie

    (@tomnewbie)

    Worked perfectly thank you very much

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove handheld navigation bar’ is closed to new replies.