Tagged: comment form, comments
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
Thank you. I will try that and I will let you know if it worked. :)
We looking forward to hearing from you :)
Regards,
Josue
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
Is there away to modify comment.php and not have it overwritten when the Enfold theme is updated?
Hi!
You should use a child theme. Create an includes folder and place a comments.php file inside.
Regards,
Ismael
Thanks as always guys!!