In the Genesis Facebook group, a user wants to know how a welcome/hero section can be set to appear below the header similar to the one at http://www.melyssagriffin.com/. In this tutorial I show how we can register a Welcome widget area and display it below the header in Genesis. We shall write responsive CSS to […]
How to remove Responsive Menu in Altitude Pro
In my Facebook group a user asked: Does anyone know of a tutorial that explains how to get rid of the responsive menu altogether on AltitudePro? I am creating a one-page website with only a few anchor links that link to items down the page. The responsive menu is completely unnecessary and I’d like to […]
How to display taxonomy term image below archive intro text in Genesis
This tutorial provides the steps to move taxonomy title and intro text above content-sidebar add a taxonomy term image inside archive intro text using the genesis_term_intro_text_output filter hook on archive pages in Genesis. Sample screenshot of example.com/category/category-1/: and the HTML output: Step 1 Install and activate WP Term Images plugin. Step 2 Edit your taxonomies […]
Genesis Portfolio Pro Customizations
In Genesis Slack, a user asked: I’m using Genesis Portfolio Pro plugin, and it’s working fine — the archive page shows my portfolio project images and text links as they’re supposed to (and then they link out to the individual pages for each project). The problem is I’m trying to keep accessibility in mind, and […]
Adding background images to multiple widget sections via Customizer in Genesis
Updated on May 09, 2018 for Genesis Sample 2.6.0 In my tutorial requests Trello board, a user asked: Would love to see a tutorial on adding background images to multiple widget sections via the customizer–similar to Altitude Pro. (e.g. to front-page-1, front-page-3, front-page-5, etc.) On the Sample theme or any theme. In this article, we […]
Simplifying the code for registering multiple widget areas in Genesis
In the vein of my earlier post on simplifying the code for displaying multiple widget areas in Genesis, I share the condensed code for registering 4 widget areas here. // Register front-page widget areas for ( $i = 1; $i <= 4; $i++ ) { genesis_register_widget_area( array( ‘id’ => "front-page-{$i}", ‘name’ => __( "Front Page […]
How to apply Full Content layout to archives in Genesis
Looking to remove sidebar(s) on all archive pages in your Genesis site? Just add the following in child theme’s functions.php. // Force full content layout on archives add_action( ‘get_header’, function () { if ( !is_archive() ) { return; } add_filter( ‘genesis_pre_get_option_site_layout’, ‘__genesis_return_full_width_content’ ); } );
3 Methods to Add a Title for Footer Widgets in Genesis
Looking to add a title or custom HTML above the footer widgets (.footer-widgets > .wrap)? Here are three ways in which this can be done in the order of my personal preference from top to bottom. PHP code goes in child theme’s functions.php. Tested in Genesis Sample child theme with Accessibility support enabled for headings […]
The Events Calendar Customizations in Genesis
In my tutorial requests Trello board a user asked, The Event Calendar by Modern Tribe – they don’t have a way to add the holidays. So I created a category called Holidays. When displayed in List View or Monthly Calendar, I do not want them “clickable” and I do not want the “Read More” or […]
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 […]
Recent Comments