Hide Post Content

Hello –
Great Theme!
I would like to hide the post written content on the home page so only the featured image shows. Can anyone help me on that?
Thanks
Chris.

You should add this code to Theme Options - Other - Custom CSS

.home .post-inner-content {
    display: none;
}

It will hide post content, title, post meta and everything else and will leave only featured images on front page.

Let me know if you want to leave some details in place such as post title or other.

Wow! The magic of code.
Yes, Aigars, I would like the title, comments, and date, etc., to display.
Thanks so much for the help.
c.

Use this code via Theme Options - Other - Custom CSS if you want to hide post content in front page but leave read-more button in place.

.home .entry-content p {
    display: none;
}
.home .entry-content p:last-child {
    display: block;
}

Use this code if you want to get rid of read more button as well

.home .entry-content {
    display: none;
}

Both code examples will leave important details such as Comments, Post title, Date in place.