In GenesisWP Slack a user asked how a full-screen story header similar to the one in nytimes can be set up in Genesis. The idea is to show date, title, subtitle and byline in the story meta section on the left and featured image on the right. This tutorial provides the steps to checkered story […]
WordPress
How to setup sticky elements on scroll in WordPress using Stickybits
In the past, I’ve written about using Sticky-Kit to stick elements as they are scrolled past. In this tutorial I show how Stickybits can be used for the same, specifically to make the primary nav sticky for screen widths > 1023px in Genesis Sample. While the tutorial has been written for Genesis Sample, it should […]
How to overlay Post titles on featured images on single posts in Ambiance Pro
In StudioPress forums a user asked: Could anyone tell me pls how I can move page title on specific pages over these big feature images. Let’s first look into how the titles can be relocated from their default position to over the featured images for ALL posts with featured images in Ambiance Pro. What we […]
How to add Excerpts below Author Byline when using Genesis Author Pro
A user asked: I am using the Genesis Author Pro plugin. I need the Excerpt from the Excerpt meta box to display under the title on the book archive page and also on the single book pages. The templates for single book and books archive pages in the Genesis Author Pro plugin remove all the […]
How to change product image thumbnail size on Easy Digital Downloads checkout page
By default product thumbnails on EDD checkout page appear very tiny (25 x 25). Here’s the code snippet to set a custom image size for the same: add_filter( ‘edd_checkout_image_size’, ‘filter_edd_checkout_image_size’, 10, 1 ); /** * Change product image thumbnail size on Easy Digital Downloads checkout page. * * @param array $array default image size (25 […]
WP Simple Custom Login plugin
When it comes to branding clients’ sites, 90% of the times all that needs to be done on the WordPress login page is changing the logo changing the logo link to site’s homepage setting a body cover image I’ve put together a basic plugin for the above called WP Simple Custom Login plugin. Visit the plugin’s page on […]
How to insert HTML between Title Area and Header Widget Area in Genesis
If you are looking to inject custom HTML markup, say a div in between .title-area and .header-widget-area in Genesis it can be done using the genesis_markup_<context-name>_<open/close> dynamic filter hook. In a function hooked to genesis_markup_title-area_close filter, we can check for a closing tag of .title-area, append our custom HTML markup to it and return the […]
How to remove Dates from Posts in Genesis
Looking to get rid of dates from appearing in the post info text in your Genesis site? Add the following in child theme’s functions.php: add_filter( ‘genesis_post_info’, ‘sp_post_info_filter’ ); /** * Customize entry meta in the entry header. * * @param string $post_info Existing post info * @return Modified post info */ function sp_post_info_filter( $post_info ) […]
How to remove Primary Navigation Menu from WooCommerce pages in Genesis
In Facebook Genesis group, a user asked: I’m using Cafe Pro and I want to remove the menu from my WooCommerce pages only. I’ve looked through the functions file to try and find where it’s hooked in, but I don’t see it. Can someone point me in the right direction, please? Primary nav menu (genesis_do_nav()) […]
Soliloquy slider below header on Showcase Pro’s homepage
In the comments section of Soliloquy slider below header on Pages in Showcase Pro, a user asked: Is it possible to do this as well for the home page in Showcase? I’d like to have the header/menu fixed with the white background on all pages versus the sticky effect when you scroll. This tutorial provides […]
Recent Comments