Have a static Page set as Posts page at Settings > Reading in your Genesis powered WordPress site?
If you want to remove the Page title inside .posts-page-description, just add the following in your child theme’s functions.php:
remove_action( 'genesis_before_loop', 'genesis_do_posts_page_heading' );
Before:
After:
Source: genesis/lib/structure/archive.php
Sridhar,
Where exactly do I add the code in my child theme’s function?
Thanks,
Wendy
At the bottom. If there’s a closing PHP tag, before that.
Sridhar,
Thank You!! It worked. I found many resources focused on removing the title only instead of the spacious title bar left behind. Your post with code was just what I needed to resolve my problem.
Thanks again!
-Wendy
Thanks Sridhar,
this is what i looking for and it worked
This was the solution that worked for me after spending a long time searching the web. THANK YOU VERY MUCH!!!!