• Resolved mackylos

    (@mackylos)


    Good day,

    How can I remove the preview image that appears above each post in the Photo session theme?

    It appears right beneath the title with a little calendar symbol on it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey there mackylos,

    Hope you’re well today!

    Are you looking to remove featured image from blog page or single post pages, or both?

    This should be possible with some custom CSS. Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    http://ww.wp.xz.cn/plugins/simple-custom-css

    To remove it from blog page add the following:

    .page-template-template-blog-post .post-thumb {
      display: none;
    }

    If you want to remove it from single post pages then add the following:

    .single .post-thumb {
      display: none;
    }

    If the code doesn’t work please post link to your site so I can take a look.

    Hope this helps 🙂

    Cheers,
    Bojan

    Olá, boa noite!

    Gostaria de remover a data dos meus posts e a informações sobre comentários.

    Já procurei por isso e não encontrei em nenhum lugar <?php the_time(‘F jS, Y’) ?>

    Estou usando o tema SKT Photo Session.

    Fico grato pela ajuda! Abraço

    Hi fabianojerico,

    I believe easier and safer way would be by hiding it with some CSS code like this:

    .postmeta .post-date,
    .postmeta .post-comment {
        display: none;
    }

    Cheers,
    Predrag

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

The topic ‘Remove Preview Image ABove Each post’ is closed to new replies.