My first answer was: If you don’t choose a blog page in the settings the blog posts won’t show. But hen I realized that I don’t work with featured posts but with child pages, sorry. I can’t remove this answer.
-
This reply was modified 8 years, 4 months ago by
tastymouse. Reason: Not the right answer
Thanks for your response @tastymouse. I have configure my homepage to show “your latest posts” under settings > reading. Your solution would also be an option for me if I could show featured posts on a static page. Is that possible within this theme?
@dirkielander –
I would like to have a homepage with just the featured posts. Thus without the “blog” part underneath the slideshow with featured posts. Is that an option?
You could hide the main content area (including the blog section) with custom CSS like this:
.site-content-wrapper {
display: none;
}
Add that to your Additional CSS panel in the Customizer and let me know if it’s the effect you’re after.
Thanks for the helpfull response @zoonini.
I added “.home” to the custum CSS in order for it to only apply to the home page:
.home .site-content-wrapper {
display: none;
}
You’re welcome — glad you’re set!