Remove "leave a comment" link and post footer text in Comet

  • Unknown's avatar

    Hi there,

    an example page I am referencing is here:
    http://thecusnconnection.com/2012/07/19/weve-changed-our-look/

    I would like to remove the right hand side “leave a comment link” as it only takes me to the “leave a reply” box just a few inches below and seems redundant.

    Also, is there a way to remove the post footer text and links i.e “posted by __, permalink, edit post, date posted, and leave a comment, posted in uncategorized”?

    I am trying to clean it up and simplify as much as possible.

    thanks very much for your help.

    Alicia

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

  • I would like to remove the right hand side “leave a comment link” as it only takes me to the “leave a reply” box just a few inches below and seems redundant.

    Hi there, unfortunately it’s not possible to remove “leave a comment” since that particular element in this theme doesn’t have a class or ID that can be targetted through CSS to hidden.

    Also, is there a way to remove the post footer text and links

    It looks like you’ve removed the footer text in the meantime. Just let me know if there is anything else you still need help with. Thanks!

  • Unknown's avatar

    There is often a trick or some fancy workaround to getting access to elements like that. The following will hide the “Leave a Comment” link at the bottom of individual posts and pages (but not the home page) on the Comet theme:

    .post-meta .row:first-child div a {
    	display: none;
    }
    .home .post-meta .row:first-child div a {
    	display: block;
    }
  • The topic ‘Remove "leave a comment" link and post footer text in Comet’ is closed to new replies.