In the Genesis Facebook group a user asked: I am using Magazine Pro with a number of custom fields created via ACF. I have set up the home page using the Genesis Featured Posts widget in a number of places. In one of the widget areas, I would like to remove the default post date […]
Free Content
How to replace “Comments” text in Genesis Featured Posts widgets with an icon
The default Post Info content in a Genesis Featured Posts is: December 16, 2017 By Sridhar Katakam Leave a Comment which might appear on the frontend (depending on the styling in the child theme) like this: This tutorial provides the steps to replace the strings Leave a Comment/Comment/Comments in the output of Leave a Comment […]
How to load and use Font Awesome 5 in WordPress
Updated on May 07, 2018 Font Awesome 5 has been recently released with SVG vector icons compared to the earlier icon fonts. In this tutorial, I share detailed steps on how to load and use Font Awesome 5 in WordPress using both the methods (CSS Pseudo-elements and inline SVG) for free and Pro versions. SVG […]
How to add a heading above blog posts in Front Page 2 section of Wellness Pro
Looking to add a heading text like “Our Latest Blog Posts” above the four widgets in the Front Page 2 widget area of Wellness Pro? Follow these steps. Step 1 In front-page.php change genesis_widget_area( ‘front-page-2’, array( ‘before’ => ‘<div id=”front-page-2″ class=”front-page-2″><div class=”flexible-widgets widget-area’ . wellness_widget_area_class( ‘front-page-2’ ) . ‘”><div class=”wrap”>’, ‘after’ => ‘</div></div></div>’, ) ); […]
How to remove Sitemap from 404 page in Genesis
Looking to get rid of the Sitemap from 404 pages in your Genesis site? Simply copy 404.php from parent Genesis directory into your child theme and remove the code that outputs the sitemap. Before: After: Step 1 Copy 404.php from Genesis directory into your active child theme directory. Step 2 Edit the above file and […]
How to add a “Call Us” button above header on mobiles in Genesis
This tutorial provides the steps to register a before-header widget area and display a widget placed in it above the header on mobile widths (812px and below) in Genesis. While the tutorial has been written for Genesis Sample, it should work with a few adjustments in any Genesis theme. Step 1 Add the following in […]
How to add an additional pagination to the top of archives in Genesis
In the members-only forum, a user asked: I would like to see a tutorial on how to add pagination (in my case, specifically numeric) to the top of a post archive. To be clear I don’t want to move or loose the pagination at the bottom of the archive. I just need to duplicate it […]
How to set up a Sticky widget in Genesis
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 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 […]
Recent Comments