Forum Replies Created
-
AuthorPosts
-
December 5, 2017 at 10:44 am in reply to: Monochrome Pro – Switch Footer Navigation & Credit #214289toddjobMember
rdw2017 - I got a response from studio press support. It did not work for me but maybe it will work for you. They Also referred me to the hook documentation but I could not find a solution to resolve this. Try what they suggested below and see if it works for you. If it does, I'd appreciate of you would share what you did.
Hi Todd,
Thank you for reaching out to us with your question! I'm happy to help.
The location of the site footer and secondary menu (otherwise known as the footer menu) is determined by the following sections of the functions.php file:
// Reposition secondary navigation menu. remove_action( 'genesis_after_header', 'genesis_do_subnav' ); add_action( 'genesis_after', 'genesis_do_subnav', 12 );
// Remove site footer. remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 ); remove_action( 'genesis_footer', 'genesis_do_footer' ); remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 );
// Add site footer. add_action( 'genesis_after', 'genesis_footer_markup_open', 5 ); add_action( 'genesis_after', 'genesis_do_footer' ); add_action( 'genesis_after', 'genesis_footer_markup_close', 15 );
You can edit these sections to reposition them in the order you'd like.
Unfortunately, we don't have copy/paste code to provide you for this, as it is custom code that would need to be written and tested specifically for your site. Also, we generally do not give step by step instructions for theme customizations such as this: http://www.studiopress.com/what-support-includes.
We have a couple articles in our knowledge base that will help you get started:
- https://my.studiopress.com/documentation/customization/guides-and-references/an-introduction-to-hooks/
- https://my.studiopress.com/documentation/customization/guides-and-references/hook-reference/You may want to post a thread in our Community Forums. It's possible that another user has done something similar and would be willing to share their code with you: http://studiopress.community
You could also check out the other community resources such as the Slack channel and Facebook group: https://my.studiopress.com/community/
If you wish to have someone assist you with the change, we have a list of recommended Genesis developers - just visit http://www.studiopress.com/genesis-developers for a list.
Please let us know if you have further questions and we will be happy to assist you.
Best,
Susan Nelson
Customer Success Specialist - Team LeadRainmaker Digital Support
Todd Krause – ToddJob Media
https://www.toddjob.net -
AuthorPosts