• Resolved sharon-jackson

    (@sharon-jackson)


    I would like to remove the comments at the bottom of the pages.
    Is there specialized css for this or can I do it in customizer? I have looked but cannot see where.

    Thank you for your help

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Rough Pixels

    (@roughpixels)

    There is a setting in the editor when you have the page open (to edit) that lets you disable comments. However, this doesn’t always work when there are existing comments.

    A quick method can be CSS to hide them. Such as this:

    .page-id-9 #comments {
        display: none;
    }

    If you use the above code, simply copy and paste it into the Additional CSS tab of the customizer. This will hide them from view for that particular page, which has the body tag page-id-9

    Hopefully, this works for you.

    Best Regards,
    Andre

    Thread Starter sharon-jackson

    (@sharon-jackson)

    Worked like a charm, though I have to do it for all pages separately. Still, this is great. Thank you so much.

    Theme Author Rough Pixels

    (@roughpixels)

    If you want this for all pages, you can try this code then:

    .page #comments {
        display: none;
    }

    That will hide the comments on all “pages”.

    Thread Starter sharon-jackson

    (@sharon-jackson)

    You are brilliant. Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do I get rid of the comments at the bottom of the page’ is closed to new replies.