• How can I remove the post thumbnail when I’m not on the first page of an post?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • That was featured-image, if you want to disable this add the following css code in your themes custom css.

    .featured-image, .featured-video {
    display: none;
    }

    Thread Starter Silas_229

    (@silas2209)

    Can I remove it in my theme with a condition?

    Thread Starter Silas_229

    (@silas2209)

    A working CSS code would be

    body[class*="single-paged-"] .featured-image,
    body[class*="single-paged-"] .featured-video {
        display: none;
    }

    That will work only for posts. If you want to handle paged Pages or other post types also, you would do

    body[class*="paged-"] .featured-image,
    body[class*="paged-"] .featured-video {
        display: none;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove thumbnail on paged post’ is closed to new replies.