Community Forums › Forums › Archived Forums › General Discussion › Remove menu from 1 page in education theme
- This topic has 10 replies, 3 voices, and was last updated 11 years ago by
wnb.
-
AuthorPosts
-
April 21, 2015 at 7:49 pm #148743
wnb
MemberI am trying to remove the menu only, from 1 page on my Education Theme site. Does anybody have a nice easy way to do that?
Thanks in advance...
April 21, 2015 at 11:38 pm #148758Genesis Developer
MemberCheck this snippet. i added it in functions.php
function gd_nav_menu_args( $args ){ //* This is removing primary menu from a page which have page ID 39 if( ( 'primary' == $args['theme_location'] ) && is_page(39) ) { $args['menu'] = ''; } return $args; } add_filter( 'wp_nav_menu_args', 'gd_nav_menu_args' );
April 22, 2015 at 6:30 am #148790wnb
MemberIf I add this into function.php do I need to change anything? I tried it and changed the page id to 1588 and it did not work the menu remained.
April 22, 2015 at 6:32 am #148791Brad Dalton
ParticipantLink to your site please
Try one of these http://wpsites.net/web-design/remove-nav-menu-specific-page/
April 22, 2015 at 6:47 am #148793wnb
MemberBrad, is this something you can do for me? What do you charge? I want to be able to do this on additional pages as I add more webinar pages,
April 22, 2015 at 6:50 am #148794Brad Dalton
ParticipantApril 22, 2015 at 7:04 am #148795wnb
MemberI can't get your form to work. It is not allowing my website it gives me this error message:
Please enter a valid Website URL (i.e. http://www.gravityforms.com). I am using http://k9-university.com and tried with the www alsoApril 22, 2015 at 7:08 am #148796Brad Dalton
ParticipantApril 22, 2015 at 7:11 am #148797wnb
MemberIsn't this correct? It will not accept it
April 22, 2015 at 7:17 am #148798Brad Dalton
ParticipantIt should accept that address because its valid. Try now without the address.
April 22, 2015 at 7:21 am #148799wnb
MemberBrad your form says:
This service enables you to speak directly with me and get the answers you need to solve your problem.
I don't want to talk about it I want somebody to do it. Is that possible?
I am trying to create a page to host webinars. I would like people to be able to click the links and look around without leaving the webinar. I guess the links would need to open in a new browser tab so that the webinar continues for them.
If that is too difficult then i would like to remove the links on the pages that i use for the webinars.
-
AuthorPosts
- The forum ‘General Discussion’ is closed to new topics and replies.