Hide primary menu on one or more pages?

Homepage Community Forums Ally Theme Support Hide primary menu on one or more pages?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #12842
    troy
    Customer

      This is what the guys over at studio press gave me, but i assume it was for a genesis based theme. I want the menu (primary) to disappear on one or more pages, not all of them. I’ve altered this to no avail.
      Anyone have an idea?

      Thanks

      add_action(‘get_header’, ‘bwp_pages_remove_genesis_nav’);
      /**
      * Remove Primary Navigation Menu from specific Pages
      * @author Davinder Singh Kainth
      * @Link http://www.basicwp.com/remove-primary-menu-pages-genesis/
      */
      function bwp_pages_remove_genesis_nav() {
      $pages = array( 61, 181 );
      if ( is_page( $pages ) ) {
      remove_action(‘genesis_after_header’, ‘genesis_do_nav’);
      }
      }


      Life’s Hard, its a lot Harder if you are stupid

      #12843
      troy
      Customer

        Nevermind, i got it!!!!

        Here is the code

        .page-id-8013 .nav-primary {
        display: none;
        }

        Put it in my Ally stylesheet


        Life’s Hard, its a lot Harder if you are stupid

      Viewing 2 posts - 1 through 2 (of 2 total)
      • The topic ‘Hide primary menu on one or more pages?’ is closed to new replies.