Remove "leave a comment" link and hide tags

  • Unknown's avatar

    Hi there,

    I’m wondering if there is a way to remove the “leave a comment” link at the end of my projects and posts, as the comment box is right below this link.

    Also, is there is a way to hide tags / project tags? I still will use tags to orginase my projects and posts. I just don’t want my viewers to see them when they are browsing my website.

    The Theme I use is Sketch by Automattic.

    Cheers!

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

  • Unknown's avatar

    Hi,
    Your site seems to be in private mode so i cannot take a look at the menu bar and give you the exact CSS code to hide/remove the leave a comment link and the tags.

    But here’s the general idea to do it using CSS. To hide an element in a WordPress.COM site you can use the following CSS property:
    display: none;
    For example, if i want to hide an icon which as a CSS code like this:

    .icon {
        width: 40px;
        height: 40px;
        background: white;
    }

    i will add the “display: none” property to that code like this:

    .icon {
        display: none;
        width: 40px;
        height: 40px;
        background: white;
    }

    or like this:

    .icon {
        display: none;
    }

    Let me know if this helps :)

  • The topic ‘Remove "leave a comment" link and hide tags’ is closed to new replies.