Two comment questions

Discussion in 'SwiftRay WordPress Theme' started by jlewtoo, Feb 18, 2013.

Thread Status:
Not open for further replies.
  1. jlewtoo

    jlewtoo New Member

    Joined:
    Apr 20, 2012
    Messages:
    14
    Likes Received:
    0
    Location:
    Irvine, CA
    Hello,
    I have two questions about the comment form. I am trying to delete the text (see attachment) underneath the comment form in the news section of the website and can't locate where to do this.

    I am also trying to create a page that will act as an online commenting forum, however when I try to change the page type to blog to allow for commenting, the page disappears and redirects to the posts section. Can you please advise how to accomplish this? Do I need to turn on comments to do this? I tried adding code as directed but still not showing a comment option. Can you turn on/turn off comments per page?

    Link is http://dads4specialkids.lammconsultingservices.com.
     

    Attached Files:

  2. leonkill2000

    leonkill2000 Member

    Joined:
    Jun 15, 2012
    Messages:
    96
    Likes Received:
    0
    If you go to All Pages and click on 'Quick Edit' you can untick 'Allow Comments'
    You can do this for each individual page
     
  3. jlewtoo

    jlewtoo New Member

    Joined:
    Apr 20, 2012
    Messages:
    14
    Likes Received:
    0
    Location:
    Irvine, CA
    Thanks for your response but that box was already checked and the comment box is still not working. I believe that something will need to be corrected within the editor file. I have tried several fixes found on the forum but none of them have worked successfully.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    For this issue, paste the following code in your custom css
    (Appearance -> Theme Options -> Styling Options -> Custom CSS).
    Code:
    p.form-allowed-tags {
    display: none;
    }
    It will remove that text.
     
  5. jlewtoo

    jlewtoo New Member

    Joined:
    Apr 20, 2012
    Messages:
    14
    Likes Received:
    0
    Location:
    Irvine, CA
    Thank you. That took care of the first issue, however I still need help with the second issue. Even though I was choosing the allow comments box no comment box is appearing. Please advise, thanks!
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    To add comment form in fullwidth pages, Add code given below
    in "template-fullwidth.php" (Appearance > Editor > template-fullwidth.php) as shown in image.

    Code:
    <!--Start Comment Section-->
                  <?php comments_template(); ?>
                  <!--End comment Section-->


    [​IMG]

    To add comment form in default pages, Add code given below
    in "page.php" (Appearance > Editor > page.php) file as shown in image.

    [​IMG]
     
  7. jlewtoo

    jlewtoo New Member

    Joined:
    Apr 20, 2012
    Messages:
    14
    Likes Received:
    0
    Location:
    Irvine, CA
    It worked! Thank you!
     
Thread Status:
Not open for further replies.

Share This Page