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
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 […]
Multiple drag-n-drop Hero, Text-Image and Image-Text sections in Digital Pro
In the comments section of Using ACF Pro for multiple drag-n-drop Hero, Text-Image and Image-Text sections in Genesis tutorial, a user wrote: couldn;t get to work on digital pro, wasn’t full width and boxes didn’t appear side by side. This tutorial is a shorter and better implementation to set up a page template in Digital […]
How to make the latest post featured (large) in Genesis
To view the full content, please sign up for the membership. Already a member? Log in below or here.
Recent Comments