Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #218255

    Hello!

    I was wondering where could I customize the text that is in comment form?
    I would like the text after “Leave a Reply” to be different and I would like an additional text after email* -> Your email address will not be shared.

    I also was wondering if there is any way to add a link at the top of the comment section that would guide people to the comment form.
    If there are more comments the form could get really far away and that can discourage people from commenting.
    Here: http://www.marieforleo.com/2014/01/when-inspiration-backfires/#more-5594 Marie Forleo has that link above her comment section.

    Another thing is that I have noticed that there is o much white space between the end of the text and the beginning of the form. Is there a way to remove that space?

    And lastly :), I was wondering where and how can I control if the “you might also like” section appears after my post. I don’t compleately understand how that works. :)

    Thank you for your help & I love your theme.

    Lexie.

    #218305

    Hi Lexie,

    To edit the texts, open /includes/comments.php and look for lines 166-167.

    You can add the link to the comment form in the same file too, try putting something like this around line 67:

    <a href="#respond">Comment form</a>
    

    This code will remove the white space (Quick CSS):

    #respond {
        margin-top: 0 !important;
    }

    The you might also like gets filled with related posts, the relationship between posts is based on tags, you can disable it if you want opening single.php and removing line 52.

    Regards,
    Josue

    #219315

    Thank you. I will try that and I will let you know if it worked. :)

    #219542

    We looking forward to hearing from you :)

    Regards,

    Josue

    #220615
    This reply has been marked as private.
    #220642

    Hi,

    Open /includes/comments.php and look for line 172:

    comment_form();
    

    Replace it by this:

    comment_form(array('label_submit'=>'Send'));
    

    Change “Send” by the value of your preference.
    Regards,
    Josue

    #222645

    Is there away to modify comment.php and not have it overwritten when the Enfold theme is updated?

    #222779
    #222780

    Hi!

    You should use a child theme. Create an includes folder and place a comments.php file inside.

    Regards,
    Ismael

    #222813

    Thanks as always guys!!

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Customizing the comment section’ is closed to new replies.