npetten 0 Report post Posted August 29, 2011 I would like to place a second tier menu (secondary menu) on the posts page (category posts page). Is there a way of doing that? Thanks!!! Share this post Link to post Share on other sites
kastelic 6 Report post Posted August 29, 2011 YOu can't do this in the options, but you can do it manually through a hook. View the vid on hooks here: http://www.pagelines.com/docs/base-child-theme I would use the hook, pagelines_after_primary-nav. To get the html for your custom submenu, activate it on a page. Then, using Google Chrome, right-click on the menu and "inspect element". In the inspector right-click the outermost containing div of the submenu and choose "copy HTML". Then paste the html into your function. The function will look like this: [code] add_action('pagelines_after_primary-nav','custom_submenu'); function custom_submenu(){ if (is_category('9') ){ //change for specific category id ?> Share this post Link to post Share on other sites npetten 0 Report post Posted September 2, 2011 Thanks for the advice. However, I am hesitant to use this method. I intend to hand over the website to a client that will be managing it in the future and I want to give them an easier method to customize the menu system on an ongoing basis. Are there any plugins that you recommend or other methods? Thanks again for the previous advice. Share this post Link to post Share on other sites catrina 103 Report post Posted September 2, 2011 I found this one in a search: http://wordpress.org/extend/plugins/genesis-subpages-as-secondary-menu/ You can try that one and if it doesn't work the way you like, you can search for more at http://wordpress.org/extend/plugins/ Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Login via PageLines Signup To PageLines Sign in to follow this Followers 0
npetten 0 Report post Posted September 2, 2011 Thanks for the advice. However, I am hesitant to use this method. I intend to hand over the website to a client that will be managing it in the future and I want to give them an easier method to customize the menu system on an ongoing basis. Are there any plugins that you recommend or other methods? Thanks again for the previous advice. Share this post Link to post Share on other sites
catrina 103 Report post Posted September 2, 2011 I found this one in a search: http://wordpress.org/extend/plugins/genesis-subpages-as-secondary-menu/ You can try that one and if it doesn't work the way you like, you can search for more at http://wordpress.org/extend/plugins/ Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites