I already altered my comments form by replacing<?php comment_form(); ?>
with<?php comment_form(array(\'title_reply\'=>\'Leave a comment\')); ?>
so that I could change the tile of the comment area.
Now I want to change the note above the box where guests type their comments. I saw on this site that I can do so by changing<?php comment_form(); ?>
to<?php comment_form(array(\'comment_notes_before\' => ‘MY MODIFIED TEXT HERE.’)); ?>
The problem is, I already changed that bit of code (<?php comment_form(); ?>
) for my first modification, so it\'s no longer there. What do I need to do to have both modifications? I\'ve tried different things but no solution yet. I\'m new at this, obviously.
Thanks in advance.