Forums

[resolved] Deactivating comments on 1 single page (4 posts)

  1. mjjones
    Member
    Posted 1 year ago #

    Hi,
    Would like to deactivate comments on my contact page.
    Code in the template is:

    <?php if (get_option('show_pagescomments') == 'on') comments_template('', true); ?>

    How do I insert the

    if ( is_page( 'about' ) )

    Thanks in advance for your help.

  2. alchymyth
    The Sweeper
    Posted 1 year ago #

    try:
    <?php if (get_option('show_pagescomments') == 'on' && !is_page( 'about' ) ) comments_template('', true); ?>

    in words:
    if ('option on' AND NOT page(about) ) ....

  3. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    <?php if (get_option('show_pagescomments') == 'on' && is_page( 'about' ) ) comments_template('', true); ?>

  4. mjjones
    Member
    Posted 1 year ago #

    Many thanks to both of you.

    alchymyth code worked straight away.

    I'm very, very grateful and wish you a nice Sunday.

Topic Closed

This topic has been closed to new replies.

About this Topic