Removing website URL in comments causes misalignment of submit button and tickbox
Removing website URL in comments causes misalignment of submit button and tickbox
Removing website URL in comments causes misalignment of submit button and tickbox
Modifying core WordPress files, like class-walker-comment.php, is generally not recommended, as your changes will be overwritten with each WordPress update. Instead, you can achieve the same effect by using a child theme and custom functions. This way, your modifications remain intact across updates. I tried a few different things but I was able to get … Read more
After a lot of trial-and-error from other questions and sources, I discovered the allow_empty_comment filter. This simple filter allowed me to submit comments without filling in the actual “comment” box. add_filter( ‘allow_empty_comment’, ‘__return_true’ ); More info here
function trapped in comment h3 reply title
comments meta box not showing in my plugin post type
Why does the reply link in comments template scroll to comment position?
Pretty simple. comments.php is trying to call a function twentyseventeen_get_svg() which doesn’t exist: Uncaught Error: Call to undefined function You’ll probably need to contact the theme developer or, just find the part of the code in comments.php (line 88) that calls the function and comment it out. Looks like that function comes with the theme … Read more
The last comments of a post for the author of that post
Is there a Function so that the author of the comment can delete his own comment?
Check the Codex for wp_list_comments. Scroll down to the part labeled “Source File”, which is there on almost every Codex entry. Click the accompanying link. And there you are. Sometimes (usually) the line number in the Codex entry is wrong though. Now you can happily go about hacking Core files and causing yourself no end … Read more