Yarak
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to modify line of text under "Leave a Reply" in the EditorThanks. I have never looked into a child theme as I have mande minor changes so far but, yes, I am aware that I should eventually know how to make one.
Normally what I do when I edit anything is back up everything (including server), copy all code to be edited to notepad and take snapshots of the strings of code I’m about to edit. I think that is as far as I can do without creating a child theme 🙂
Would you know where to place the string of code then?
Thanks!
Forum: Fixing WordPress
In reply to: How to modify line of text under "Leave a Reply" in the EditorMagazine Basic, 2.7.3
I was reading around and it seems as though all to do with comment editing goes under comment.php for this theme
The “Leave a Reply”, for example, is not there by default. If I wanted to edit “Leave a Reply”, I’d have to call it and insert a line of code in the snippet of code I gave you above.
Thanks
Forum: Fixing WordPress
In reply to: How to modify line of text under "Leave a Reply" in the EditorThanks.
I had seen that one already but the issue is that I do not have a
‘<p class=”comment-notes”>’
I do have however, this
$args = array(
‘comment_notes_after’ => ”,
‘comment_field’ => ‘<p class=”comment-form-comment”><textarea id=”comment” name=”comment” cols=”45″ rows=”8″ aria-required=”true”></textarea></p>’
);
comment_form($args); ?>Shall I place it on top of common_notes_after? How should I place it? The string in the link you gave calls for ending it with </p> but the </p> in my comment box is way down where it says </textarea>
Thanks again!