In Genesis Facebook group a user asks: Good morning, I could use some assistance. We have AgentPress Pro theme and would like to know is there a way to not display the footer from front page, and still have it be visible on every other page? Thank you in advance. The relevant code that outputs […]
footer
Default Footer in Genesis
Footer content in Genesis, out of the box will appear like this: If you’d like to modify it, add this in child theme’s functions.php: add_filter( ‘genesis_footer_creds_text’, ‘custom_footer_creds_filter’ ); /** * Change Footer text. * * @link https://my.studiopress.com/documentation/customization/shortcodes-reference/footer-shortcode-reference/ */ function custom_footer_creds_filter( $creds ) { $creds = ‘Copyright © 2024 · Genesis Sample on Genesis Framework · WordPress […]
Fixed Background Footer in Genesis
In my tutorial requests Trello board, a user asked: How to create a footer like this https://briangardner.com/ or http://siddharth.is? This tutorial provides the steps to combine footer widgets and footer into a single div, relocate it outside the .site-container, and set it to be fixed so it comes into view with a “revealing” effect. We […]
Changing footer text in Genesis using genesis_footer_creds_text filter
One of the several ways in which footer content can be changed in Genesis is using the genesis_footer_creds_text filter. Ex.: // Change the footer text add_filter( ‘genesis_footer_creds_text’, ‘sp_footer_creds_filter’ ); function sp_footer_creds_filter( $creds ) { $creds = ‘Copyright © 2024 <a href="’.get_bloginfo( ‘url’ ).’">’.get_bloginfo( ‘name’ ).'</a>’; return $creds; } to get If you want to display a […]
Footer Navigation Menu in Genesis
Genesis Sample child theme has code to rename secondary navigation location as Footer Menu and show the menu assigned to that location inside the footer. //* Rename primary and secondary navigation menus add_theme_support( ‘genesis-menus’ , array( ‘primary’ => __( ‘After Header Menu’, ‘genesis-sample’ ), ‘secondary’ => __( ‘Footer Menu’, ‘genesis-sample’ ) ) ); and add_action( […]
How to add an additional Footer widget area in Altitude Pro
Child theme: Altitude Pro Before: After: Here’s how: Step 1 Edit Altitude Pro’s functions.php. a) Change to b) Change to Step 2 Edit Altitude Pro’s style.css. Replace the Footer Widgets section (line 1688 to line 1726 in the unmodified Altitude Pro’s stylesheet) with the following: Step 3 At Appearance > Widgets populate Footer 2 widget […]
Workstation Pro’s Flexible Footer in any Genesis theme
In Genesis Slack chat, a user asked: Has anyone created a tutorial for adding Genesis Flexible Footer area in any child theme? In this article I share the code extracted from Workstation Pro for setting up flexible footer widget area in Genesis. Depending on how many widgets (1 to 4) are placed in this widget […]
Adding a custom menu in Footer in Genesis
To view the full content, please sign up for the membership. Already a member? Log in below or here.
Split Footer in Genesis
To view the full content, please sign up for the membership. Already a member? Log in below or here.
Add a working “Return to top of page” footer link in Genesis
Not sure if it’s just me or not, but I have noticed that [[footer_backtotop]] shortcode added in the footer via genesis_footer_creds_text filter does not work. Clicking on the “Return to top of page” footer link does not lead anywhere. My guess (being new to Genesis) is that with the release of Genesis v2.0, there have […]
Recent Comments