Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Kathryn Presner

    (@zoonini)

    Are you looking to remove the date on the blog page or only single posts? Could you provide a link to your site?

    This should do the trick on single posts:

    .single .posted-on {
      display: none;
    }

    Don’t edit the theme files directly, otherwise your changes will be overwritten every time the theme is updated to the latest version.

    An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.

    As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.

    Thanks a lot Kathryn for all the support and information you are sharing. Could you please also advise how to do this on the blog page – the published dates on the home page thumbnails? Thanks in advance!

    Moderator Kathryn Presner

    (@zoonini)

    Hi vab37 – you’re welcome. 🙂

    Could you please also advise how to do this on the blog page – the published dates on the home page thumbnails?

    To hide the date on the blog page, this should do it:

    .blog .entry-date {
     display: none;
    }

    If you have additional questions, please start a new thread rather than adding to this one. Thanks very much!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How can I take off the date of PUBLISHED?’ is closed to new replies.