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 ) […]
Search Results for: image
Reply To: Remove Showcase Overlay color
Looking at https://showcase.designbybloom.co/team/, there’s no overlay color for the hero images in the current latest version of the theme. Isn’t it? Which version of Showcase Pro are you using?
Remove Showcase Overlay color
Looks like lots of requests for Showcase tutorials lately. Looking to remove the color overlay for the hero images.
Utility Bar in Showcase Pro
This tutorial provides the steps to add a utility bar having two (left and right) widget areas above the fixed header in Showcase Pro. Screencast: Tested in Showcase Pro version 2.0.2 Step 1 Edit functions.php. a) Inside showcase_theme_setup(), below // Add previous and next post links after entry add_action( ‘genesis_entry_footer’, ‘genesis_prev_next_post_nav’ ); add To view […]
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 […]
How to display word count for posts in Genesis
Adding the following in child theme’s functions.php will display the word count in post info on single post pages in Genesis: add_shortcode( ‘word_count’, ‘func_word_count’ ); /** * Register custom [word_count] shortcode to display the number of words in a post. * * @return word count. */ function func_word_count() { $content = get_post_field( ‘post_content’, get_the_ID() ); […]
Conditionally display header with Customizer API
Hello everyone. So I’ve successfully implemented the code from this tutorial: https://sridharkatakam.com/how-to-use-customizer-api-to-add-settings-for-header-background-color-and-background-image-in-genesis/ but I would like to show the header area only on the home page. I would I do this. With a conditional? If so how do I set the code up to do this?
Default Page Header Showcase Pro
Would love to see a tutorial on how to set a default hero image for pages and/or posts on Showcase Pro 2.0? Basically, it would be great to define a fallback image if the featured image is not set. The code appears to be located on line 320 in the functions.php file. function showcase_page_header() { […]
How to group entries by Month and Year on CPT archive in Genesis
In the members-only forum, a user asked: Is it possible to display a Custom Post Type archive page organised by Month with genesis ? as below ā Jan post post post Feb post post March post post post etc , etc In this tutorial, we shall create a template for portfolio CPT’s archive page and […]
Soliloquy slider below header on Pages in Showcase Pro
This tutorial provides the steps to show different Soliloquy slider below the header on different static Pages in Showcase Pro. The difference between this and the earlier tutorial is that we are going to set the header to have a solid background color here and set a padding equal to the height of the fixed […]
Recent Comments