Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1343446
    stevelucky
    Participant

    I’ve searched the forum diligently and tried everything suggested but nothing seems to work. I’m trying to remove the comment count in the meta info at the top of my posts. “0 Comments” just isn’t that impressive and I don’t feel the need to advertise it. 🙂

    #1343671
    Darshana
    Moderator

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    
    .p-meta > span:last-child::after {
        display: none;
    }
    

    Hope that helps.

    #1343716
    stevelucky
    Participant

    Hmmm. It just doesn’t seem to work for me. I’ve tried it in the child theme CSS, I’ve tried it in the Customizer under Custom > Edit Global CSS as well as in the Customizer under Additional CSS. Nothing seems to work.

    #1343717
    stevelucky
    Participant
    This reply has been marked as private.
    #1344172
    Nico
    Moderator

    Hi There,

    Thanks for writing in.

    .p-meta span:nth-child(3) {
    display: none !important;
    }
    
    .p-meta > span:nth-child(2):after {
    display:none;
    }

    Play with the span child to achieve what you want to remove.

    Hope it helps.

    Let us know how it goes.

    Thanks.

    #1344703
    stevelucky
    Participant

    Thanks! It looks like, in my case, this is what fixed it:

    .p-meta span:nth-child(4) {
    display: none !important;
    }
    
    .p-meta > span:nth-child(3):after {
    display:none;
    }
    #1344788
    Rahul
    Moderator

    Glad to hear it.

    If you have any further queries or questions with the theme, kindly let us know. We’d be happy to assist you with anything.

    Thanks for choosing the X-theme.

  • <script> jQuery(function($){ $("#no-reply-1343446 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>