Updated on April 26, 2017 Let’s say you want to display 5 widget areas for the front page. The code for this is something like genesis_widget_area( ‘front-page-1’, array( ‘before’ => ‘<div class=”front-page-1 widget-area”><div class=”wrap”>’, ‘after’ => ‘</div></div>’, ) ); genesis_widget_area( ‘front-page-2’, array( ‘before’ => ‘<div class=”front-page-2 widget-area”><div class=”wrap”>’, ‘after’ => ‘</div></div>’, ) ); genesis_widget_area( ‘front-page-3’, […]
Free Content
How to relocate Page Titles below Header in Digital Pro
Looking to move titles from their usual position (inside .entry-header in content) to below the site header in their own div on static Pages in Digital Pro? We shall remove entry header (having the entry title) and add entry title wrapped inside a custom .page-title div below the header. Step 1 Add the following in […]
How to apply full content layout to WooCommerce pages in Genesis
Looking to force full content layout to all WooCommerce product category archives, WooCommerce product tag archives and single product pages in your Genesis site? Just add the following code in your child theme’s functions.php: // Force full content layout on product category, product tag archives and all single products add_action( ‘get_header’, ‘sk_force_layout’ ); function sk_force_layout() […]
Split Navigation with menu items on logo’s left and right in Genesis
April 24, 2018: The tutorial on this page is for an older version of Genesis Sample. For v2.6.0 and above, follow this instead. The theme version is yet to be updated. Updated on July 03, 2017 If you’d like to purchase a theme version of this tutorial, get it here. In the past, I wrote […]
How to reposition archive titles in Utility Pro
In my tutorial requests Trello board a user asked, I’m using Utility Pro from Carrie Dils. The template customization Im looking to do is actually pretty simple. I just want to make the archive title area full width with the sidebar (containing a list of the categories) and body below that. I’m assuming I need […]
How to relocate titles in Genesis Featured Posts widgets’ output
In the posts output by Genesis Featured Posts widget, titles appear below the featured images by default. Want to move the titles above the images like this? Before: After: Step 1 Follow https://sridharkatakam.com/custom-featured-post-widget-plugin/ Step 2 Replace the entire code in class-custom-featured-post.php with the following: <?php /** * Plugin Name * * @package Custom_Featured_Post_Widget * @author […]
How to display different number of Posts in different views in WordPress
In Genesis Facebook group a user wants to know how 18 posts can be shown on search and category archives 6 posts can be shown on the first page of Posts page with the default number of posts as set in Settings > Reading appearing in all other views incl. the paginated pages of the […]
How to use a custom template for specific category archives in Genesis
In Twitter a user asks, Question! Can I used a custom category template for specific categories using conditional tags? #genesiswp #wordpress — Melissa (@blushandjelly) September 16, 2016 This can be done using template_include filter in WordPress. Step 1 Create your custom template named say, template_custom-category.php in your child theme directory having the following: <?php // […]
How to make a specific section in Genesis editable via Beaver Builder
Updated on September 16, 2016 In Genesis Facebook group a user asked: I have an Executive Pro/Beaver Builder/client question for you, to see if this is possible. I haven’t used Beaver Builder. I just hand-code my CSS. The client wants to be able to do this themselves. This is in the home-top widget of Executive […]
How to set a custom Primary Sidebar for all Pages using a Page Template
In the comments section of How to set up different sidebars for archives and Pages in Genesis a user asked: How about activating the sidebar for a particular page based upon a template? Is it too late in the build to activate the sidebar in the template itself? We can register a custom widget area […]
Recent Comments