Okay
  Public Ticket #2539269
Removing date and author in masonry blog list
Closed

Comments

  •  1
    eddie81b4u started the conversation

    Hoping you can help. I'm trying to removing date and author in masonry blog list.

    I tried using this but had no luck.

    body .meta-author {    display: none !important;
    }
    body .meta-category {    display: none !important;
    }
    body .meta-comment-count {    display: none !important;
    }
    /* For Blog Single Pages */
    body #single-below-header {    display: none !important;
    }
    /* hide date and love on masonry blog */
    body #post-area.masonry article.post .post-meta {    display: none!important;
    }
    article.post .content-inner {    border-bottom: none;
    }



  •  2,719
    Andrew replied

    Hi there,

    Edit the blog item and remove post date

    8534957767.png


    Thanks.

  • rebecca_apogeo replied

    Hi there. The reply below doesn't seem to address the issue. I can get the buttons to control the date & author info in the header, but I am trying to remove the author name and avatar from the bottom of blog posts. I've tried the CSS code as instructed and it doesn't remove it. I've used the buttons. Still there. How do I remove this? Thank you.

  •  2,719
    Andrew replied

    Hi There,

    Thank you for contacting us

    Please paste the following code on the custom css code in Salient Theme Options>General Settings>CSS/Script related. It will remove the author name.

    .masonry.material .masonry-blog-item .grav-wrap .text a, .related-posts[data-style="material"] .grav-wrap .text a, .post-area.featured_img_left article .grav-wrap .text a {
        display: none;
      
    }

    The below code will remove the date.

    .masonry.material .masonry-blog-item .grav-wrap .text span, .related-posts[data-style="material"] .grav-wrap .text span, .post-area.featured_img_left article .grav-wrap .text span {
        
        display: none;
    }

    Hope it works.

    Kind Regards.