Community Forums › Forums › Archived Forums › Design Tips and Tricks › Loading genesis_footer_creds_text after new widgets
This topic is: resolved
Tagged: genesis_footer_creds_text
- This topic has 3 replies, 1 voice, and was last updated 10 years, 9 months ago by
cultivardesigns.
Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
February 13, 2015 at 4:07 pm #140773
cultivardesigns
Member//* Change Credit Text add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter', 100 ); function sp_footer_creds_filter( $creds ) { $creds = '[footer_copyright] · <a href="//www.fourpillarsflorida.com">Four Pillars Florida</a>'; return $creds; } //* Bottom Footer 1 genesis_register_sidebar( array( 'id' => 'bottom-footer-1', 'name' => __( 'Bottom Footer 1', 'wpsites' ), 'description' => __( 'Bottom Footer 1', 'wpsites' ), ) ); genesis_register_sidebar( array( 'id' => 'bottom-footer-2', 'name' => __( 'Bottom Footer 2', 'wpsites' ), 'description' => __( 'Bottom Footer 2', 'wpsites' ), ) ); genesis_register_sidebar( array( 'id' => 'bottom-footer-3', 'name' => __( 'Bottom Footer 3', 'wpsites' ), 'description' => __( 'Bottom Footer 3', 'wpsites' ), ) ); add_action( 'genesis_footer', 'bottom_footer1_widget', 12 ); function bottom_footer1_widget() { genesis_widget_area( 'bottom-footer-1', array( 'before' => '<div class="bottom-footer"><div class="wrap"><div class="bottom-footer-1">', 'after' => '</div>', ) ); } add_action( 'genesis_footer', 'bottom_footer2_widget', 13 ); function bottom_footer2_widget() { genesis_widget_area( 'bottom-footer-2', array( 'before' => '<div class="bottom-footer-2">', 'after' => '</div>', ) ); } add_action( 'genesis_footer', 'bottom_footer3_widget', 14 ); function bottom_footer3_widget() { genesis_widget_area( 'bottom-footer-3', array( 'before' => '<div class="bottom-footer-3">', 'after' => '</div></div></div>', ) ); }I'm trying to figure out how to position the genesis_footer_creds_text below the new footer widgets I made. I tried all kinds of combinations of priority and nothing so far works.
Ask us about Custom Genesis WordPress Themes
February 13, 2015 at 5:35 pm #140791cultivardesigns
MemberI don't understand why this doesn't work either...
remove_action('genesis_footer', 'genesis_footer_creds_text');
Ask us about Custom Genesis WordPress Themes
February 14, 2015 at 4:54 pm #140872cultivardesigns
MemberFebruary 15, 2015 at 10:58 am #140933cultivardesigns
MemberAfter many futile attempts, I'm going with that it isn't possible, and that the credits is poorly implemented and just needs to be removed.
//* Change Credit Text add_filter( 'genesis_footer_creds_text', 'sp_footer_creds_text', 20 ); function sp_footer_creds_text() { echo ''; }
Ask us about Custom Genesis WordPress Themes
-
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.