Viewing 4 replies - 1 through 4 (of 4 total)
  • 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;
      }
    }
    Thread Starter archeens

    (@archeens)

    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/

    Thread Starter archeens

    (@archeens)

    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.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Content’ is closed to new replies.