badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

How to delete post date and author on homepage?

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #106194
    #106204
    Hoang Minh Le
    Participant

    Hello, anyone here to support me?

    #106341

    Hi @hoang-minh-le

    To hide the post date and author link from the home-page posts and just author in the posts single page just login to your admin dashboard and go to Appearance > Customize > Additional CSS and paste below custom CSS code:

    .home .post-block .entry-meta,
    .single .entry-meta .author  {
        display: none;
    }
    .home .post-block .entry-meta.category-meta {
       display: block;
    }

    Thank you!

    #107065
    joeboow
    Participant

    I wish there was a way to delete the author from the homepage but leave it on the post pages.

    But I cannot find any CSS code that will achieve this?

    #107308

    Hi @joeboow,

    To hide the author from the homepage but leave it on the post pages just login to your admin dashboard and go to Appearance > Customize > Additional CSS and paste below custom CSS code:

    .home .entry-meta .author  {
        display: none;
    }

    Thank you!

    #108936
    Turgay Gül
    Participant

    Thanks that work for me to but now there is a / like before CSS Date / Autor and after CSS is Date /
    We want the / to hide to. Can you give a CSS example. Thanks

    #109258

    Hi @turgay-gul,

    To hide / just add the below custom CSS code:

    .home .entry-meta > div:after {
        content: " ";
    }

    Thank you!

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.