Hey Sri, I think I will just use this one instead: Genesis Sandbox Featured Content Widget’s output in a responsive grid with title and excerpt/content on hover Thanks!
Search Results for: genesis
Reply To: Adding social sharing icons to blog index
Follow https://sridharkatakam.com/how-to-display-social-warfare-sharing-buttons-when-content-limit-is-set-in-genesis/
Reply To: Adding social sharing icons to blog index
I tried that option, and it still doesn’t display below post excerpts on my blog index page or category pages. Maybe it’s a bug with the particular Genesis theme I’m using. It used to work on a previous Genesis theme I had.
Reply To: Add OR replace widget area to have flexible widgets area
Go through these: [Video] How Flexible Widgets in Altitude Pro work Workstation Pro’s Flexible Footer in any Genesis theme
Reply To: Genesis Sandbox Featured Content Widget’s output in a responsive grid with title
If so, go to https://sridharkatakam.com/genesis-sandbox-featured-content-widgets-output-responsive-grid-title-excerptcontent-hover/ and scroll down to “Addendum on February 23, 2016”.
How Hero Text Over Image w/ ACF Pro
Need some help adding featured image text overtop of my after_header featured images. I’m using the follow snippet to achieve the backstretch image; but need to add hero text from a ‘hero_image_text’ (ACF Pro Group). add_action ( 'genesis_after_header', 'sk_featured_image', 9 ); //* Display Featured image after header function sk_featured_image() { if ( has_post_thumbnail() && ( […]
smoothstate.js
Hi Sridhar Would you be able to give us a tutorial on how to install and implement smoothstate.js into Genesis. Thanks James
Reply To: Modifying Post Meta from Index, Categories, etc.
Oh, nevermind, it worked! I realized I had to change out the first part of code in your article from this: // Customize entry meta in the entry header add_filter( 'genesis_post_info', 'sp_post_info_filter' ); function sp_post_info_filter( $post_info ) { $post_info = ' by '; return $post_info; } to the new code you just provided above, and […]
Reply To: Modifying Post Meta from Index, Categories, etc.
Do I add this new code in addition to the original code from your https://sridharkatakam.com/post-authors-link-outside-the-loop-in-genesis or instead of it? Thanks so much!
Reply To: Modifying Post Meta from Index, Categories, etc.
Instead of that try adding this in functions.php: // Customize entry meta in the entry header add_filter( 'genesis_post_info', 'sp_post_info_filter' ); function sp_post_info_filter( $post_info ) { if ( is_singular() ) { $post_info = ' by [post_author_posts_link_outside_loop] '; } else { $post_info = ' by '; } return $post_info; }
Recent Comments