Can I hide the date of article and calendar on homepage ?

  • Unknown's avatar

    How can I hind the date that publish the article on website if I don’t want to show it to web user ? – How can I hide the activity Calendar on the homepage (will let it show when we ready for this ‘Calendar’ feature, later) Hope to hear from you soon, Thank you,

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

  • Unknown's avatar

    To hide the dates from your posts you can add this to your custom CSS via the customizer:

    .entry-meta ul > li::before {
      content: "";
    }
    .entry-meta .posted-on {
      display: none;
    }

    You can hide the dates from the recent posts widget using the following code:

    .widget-postlist-arcane .postlist-date {
      display: none;
    }

    If you don’t like the recent posts list in the sidebar at all then read through the widgets support page to learn how to customise this section.

  • The topic ‘Can I hide the date of article and calendar on homepage ?’ is closed to new replies.