Hi archeens. Welcome to the Hueman forum. You should be using a child theme. Easiest way is to add this to the child theme functions.php file:
/* filter the_excerpt to show the post content on home page */
add_filter( 'the_excerpt', 'my_post_content' );
function my_post_content( $excerpt ) {
if ( is_home() ) {
the_content();
} else {
return $excerpt;
}
}
Thanks it works, but how can disable Thumbnail Placeholder on main page, when i turn off it on theme options, it still shows blank space in thumbail place.
Here is the screen
http://postimg.org/image/fdlhsetrh/
Never mind i fixed ir with
.post-standard .post-inner {
padding-left: 0 !important;
}
Glad your got it fixed. If you don’t need any further assistance with this topic please mark it as Resolved. Thanks.