Did you know that it is possible to make any element sticky or fixed as it is scrolled to and have it “bottom out” so it never leaves its container (no more worrying about accidentally covering the footer) using CSS alone? Thanks to Tim Jensen, today I learned about position: sticky which is quite powerful […]
How to force full content on a specific category archive in Genesis
Scenario: Entry excerpts set to appear on content archives in Genesis theme settings. Requirement: Show full content for all the posts on a particular category archive page. Add the following in child theme’s functions.php: add_filter( ‘genesis_pre_get_option_content_archive’, ‘custom_force_full_content’ ); /** * Force full content on a specific category archive. */ function custom_force_full_content() { if ( is_category( […]
How to move Search icon out of nav menu next to the hamburger menu icon in Monochrome Pro
A user asked, Monochrome Pro has a nice search implementation in the header but it is not visible on mobile view. It would be nice to pull it out of the menu and display it as a standalone item next to the hamburger menu on mobile view. A tutorial on how to do that would […]
How to add Before Header widget area in Business Pro
Updated on April 24, 2018 In the members-only forum, a user asked: Hi, I’d like to add a widget area above the header (like the one on the Cafe Pro theme) on the Business Pro theme. Can you help me with this? This tutorial provides the steps to register a Before Header widget area in […]
How to add affiliate links disclosure notice above the content on single Posts in Genesis
In Genesis Facebook group a user asks: Hi everyone I’m wondering which genesis hook are would be best for a blanket affiliate links disclosure across by blog posts on my blog. They need to be at the top for Australia but I don’t want them being in my excerpts. We can add custom HTML content […]
Fixed adjacent posts navigation on scroll in Genesis
In the Genesis Facebook group Amanda asks, Any genesis tutorials out there for an entry pagination that appears upon scroll to the right and left of the page like this: https://mixandmatchmama.com/2017/11/rainy-day-closet/ but maybe halfway down the page instead of up at top? Just wondering if a ‘on-scroll’ javascript could be tied to Sridhar’s tutorial https://sridharkatakam.com/adjacent-entry-navigation…/ […]
How to apply Content Sidebar layout to Single Posts in Genesis
Looking to display a right sidebar, but only on single posts with rest of the site’s pages appearing in full content layout in your Genesis site? Just follow these steps. Step 1 Go to Genesis > Theme Settings in your WordPress dashboard, scroll to “Default Layout” section, select the full width content layout and save […]
Inline hamburger menu icon in Minimum Pro
In Minimum Pro, hamburger mobile menu icon appears below the title area from 768px and below. We can add a little bit of CSS code to position the mobile menu icon to appear at the right side of the title/logo and have the navigation menu slide open below the title area + menu icon. In […]
How to show related entries of different post types in a Page using ACF’s Relationship field in Genesis
Regarding How to automatically show a grid of sub Pages on static Pages in Genesis, a member asked: Hi, I really like this template for selected pages. Sometimes I want to show a grid that may include pages that are not a child page, or are a post or another custom post type. What I’d […]
How to move Header Image into Primary Navigation in Magazine Pro
This tutorial provides the steps to: remove site header add custom header image in the primary navigation menu in Magazine Pro. Before: After: Step 1 If you have not already, upload/select your desired logo image in the Customizer in the “Header Image” section. Step 2 Add the following in Magazine Pro’s functions.php: // Remove Site […]
Recent Comments