post

  • Unknown's avatar

    Hi! I need help to change a configuration of some posts in my blog.
    There is a way in which I can publish all posts of event category without any featured image or coloured box? I would like to publish the events’ posts only with the text.

    Thanks in advance

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Make sure on each post that you do not set a featured image. If you have featured images set for the posts, you can remove the featured image as explained in this support document.

  • Unknown's avatar

    Looks like it’s a limitation of the theme you’re using The Columnist.

    Normally, you can fix this by editing the theme’s PHP files. Sadly, WordPress.com does not allow us to edit those files. :|

    BUT you can make do by hiding the box for the thumbnail using CSS code, only for posts of the event category. This will require the Custom Design upgrade (found here).

    You can try the upgrade before buying it first. Go to this page and look for the “I’m not sure if the Custom Design upgrade is for me. Can I try before I buy?” part.

    When it instructs you to edit your CSS, add this piece of code at the bottom of the file:

    .home .post.category-event .thumbnail {
    display: none;
    }

    In the code above, replace “event” with the name of the category you wish to hide. Take note that this will hide ALL images/coloured boxes for all posts of the event category in your homepage. Even if you add a featured image to the, event post, it won’t show up.

    If this works for you and you think it’s worth $30 per blog, per year, you can decide whether to purchase the CSS upgrade or not. :)

  • Unknown's avatar

    Eh, I can’t seem to edit my first reply.

    Not sure why the code display is weird but the proper code should be:
    .home .post.category-event .thumbnail {display: none;}

  • Unknown's avatar
  • The topic ‘post’ is closed to new replies.