Viewing 5 replies - 1 through 5 (of 5 total)
  • If there’s not a theme option to remove it on the specific page you could add some custom CSS:

    /* hide comment form on About page */
    .page-id-2 .comment-respond {
        display: none;
    }

    To add custom CSS:

    Thread Starter laurennatalieirwin

    (@laurennatalieirwin)

    Thank you! That has worked for the About page. I have the same problem with the Contact page and tried to add the following code:

    /* hide comment form on Contact page */
    .page-id-2 .comment-respond {
    display: none;
    }

    but hasn’t worked. Any suggestions?

    It’s on a different page so has a different page id class in the <body> tag. Adding that page id should cover both of them:

    /* hide comment form on About and Contact pages */
    .page-id-2 .comment-respond, .page-id-12 .comment-respond {
    display: none;
    }
    Thread Starter laurennatalieirwin

    (@laurennatalieirwin)

    Yes that has worked! Thank you so much for your help!

    You’re most welcome; glad to help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘removing reply function’ is closed to new replies.