In the comments section of Full width Soliloquy slider with Header floating on the top in Genesis, a user asked I want to get this to work for Carrie Dil’s Utility Pro theme and replace the first intro area. Would that work? In this tutorial we shall wrap .utility-bar, .site-header and .nav-primary in a custom […]
How to enable Author Box in Genesis on single entries of ‘post’ type only
Adding in functions.php when using Genesis will enable the author box for all users on single entries of all post types (standard blog posts, Custom Post Type entries etc). If you want it to be displayed only on single blog post pages but not on single pages of other post types, change the above code […]
Video Background in Genesis using Vide
In the members-only forum a user posted, Sridhar, I want to create a landing page on one of my Genesis sites (using eleven40 – http://my.studiopress.com/themes/eleven40/) that has a landing page with a video background. There are plenty of video background solutions (here is one I found on ProductHunt yesterday – https://rishabhp.github.io/bideo.js/) but I just need […]
Force a layout for Pages that have subpages in Genesis
Andy asks Hey @UKGenesis @GenesisWPguide #genesiswp: how do I change layout based on if page is a parent or has children? Any ideas?? — Andy Moore (@that_web_guy) May 27, 2016 Adding the following in child theme’s functions.phps will apply content-sidebar layout to all static Pages that have children and overrides the default layout set in […]
Full width search form on top of header in Genesis
The other day I received an email from Mediafox asking if I want to have a chat with them for a potential job. While I am not interested in that, what I did find interesting is the search form implementation on their site. Clicking on the search icon in the header nav brings up a […]
How to display featured image below header and relocate titles on single pages of a CPT in Genesis
This is based on my earlier How to display Featured image below navigation and relocate titles on Pages in Genesis tutorial. In this article we shall create a file named single-project.php (where project is the relevant Custom Post Type) and populate it with code to display a full width featured image (if present) below the […]
Multiple Loops in Genesis
In this article I share sample code of a Page Template which adds a new section below the existing content. The new section displays two loops: three entries from portfolio CPT six regular posts tagged project Create a file named page-slug.php where slug is your static Page’s slug. In this example, the Page title is […]
How to add ‘Subscribe to this Category’ RSS button below headline and description on category archives in Genesis
In Genesis Slack chat a user asked, I have scoured WordPress.org looking for this and I cannot find it. I remember a lonnnnng time ago seeing this maybe on an old SP forum. Does anyone know how to add the RSS feed icon to the bottom of categories so people can subscribe just to that […]
How to exclude entries belonging to a taxonomy term from a CPT archive in Genesis
In Genesis Slack chat a user wanted to know how entries of a specific custom taxonomy term can be excluded from a Custom Post Type archive page in Genesis. We can remove the standard loop from a project CPT archive’s template and replace it with a custom one in which genesis_custom_loop() can be sent an […]
How to remove Posts page heading in Genesis
Have a static Page set as Posts page at Settings > Reading in your Genesis powered WordPress site? If you want to remove the Page title inside .posts-page-description, just add the following in your child theme’s functions.php: remove_action( ‘genesis_before_loop’, ‘genesis_do_posts_page_heading’ ); Before: After: Source: genesis/lib/structure/archive.php
Recent Comments