Enable comments not working

Discussion in 'ColorWay WordPress Theme' started by urbancabin, Apr 2, 2014.

  1. urbancabin

    urbancabin Member

    Joined:
    Jan 4, 2013
    Messages:
    46
    Likes Received:
    1
    www.chrismurrayhockey.com

    I have a message board and I have done everything to enable comments and I have added comments, but they are not displaying.

    Also, on the contact page, how do I remove the column on the right. I have changed all my pages to the wide page template, but the contact page has a bunch of mess to the right that I would like to remove

    Thank you :)
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Go to the template-fullwidth.php file present in your theme directory and paste the code given below as shown in the image given below.

    Code:
    <!--Start Comment Section-->
                   <div class="comment_section">
                        <!--Start Comment list-->
                        <?php comments_template( '', true ); ?>
                        <!--End Comment Form-->
                   </div>
                   <!--End comment Section--> 
    [​IMG]

    This will solve your comment issue.

    2.Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
     .contact .sidebar {
    display: none;
    }
    
    This will remove the sidebar from the contact page.
     
    urbancabin likes this.
  3. urbancabin

    urbancabin Member

    Joined:
    Jan 4, 2013
    Messages:
    46
    Likes Received:
    1
    The comment field is now there only when someone is logged in, and I want to accept comments from people without requiring them to 'log in': how do I fix that?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  5. urbancabin

    urbancabin Member

    Joined:
    Jan 4, 2013
    Messages:
    46
    Likes Received:
    1
    Username: *******
    Password: ******
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  7. urbancabin

    urbancabin Member

    Joined:
    Jan 4, 2013
    Messages:
    46
    Likes Received:
    1
    Thank you, how do I remove fields? I would like to simply have Name and comment. (in the players section I want to remove website name field and make email address an optional field. Also, now all of my pages that do not allow comments have the words "comments are closed" and these words are sometimes interfering with the look of the site: how do I remove those words? For an example visit page: http://chrismurrayhockey.com/03-ice-pirates/kamloops-mini-tournament/
     
  8. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    To remove website field.
    Open "comment.php" file and remove code as shown in the image.

    website.png

    And for mail field open "wp-comments-post.php" exist in the WordPress root directory. And comment code as shown in the image.

    comment.png

    To remove "comments are closed"
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #commentsbox .nocomments {
    display: none;
    }

    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page