php - Removing structural wrap from footer WP Genesis -


i working on wp child theme using genesis , bootstrap (https://github.com/salcode/bootstrap-genesis). having trouble styling footer without constraint of built in structural wrap. trying right remove footer all-together , call after site-container.

remove_action( 'genesis_footer', 'genesis_do_footer' ); add_action( 'genesis_after', 'genesis_do_footer' ); 

this adds footer outside container great not removing original footer, have 2 footers. editing footer using simple edits plugin.

any suggestions on how either remove footer or how remove structural wrap?

thanks ton!

what have moves footer text (it's confusing, know!) want move markup well, this:

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_action( 'genesis_after', 'genesis_footer_markup_open', 11 ); add_action( 'genesis_after', 'genesis_do_footer', 12 ); add_action( 'genesis_after', 'genesis_footer_markup_close', 13 ); 

Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -