Shortcode for Comments and Comment Boxes in Post Loop
Shortcode for Comments and Comment Boxes in Post Loop
Shortcode for Comments and Comment Boxes in Post Loop
How to add code for wp-comments-post.php over functions.php?
Cannot Remove Title Reply from Custom Comment Template for Signup Page
the formatting you want to change typically lives in a comments.php file in the root directory of the theme, though different themes can deal with comments in different ways. There are even themes (Divi themes do this, for example) that let you turn elements like author on and off as part of customizing the theme. … Read more
Yea, you can’t use short codes in comments by default with WordPress. Short codes are anything surrounded in those ‘[ ]’ brackets. There are plugins you can install that allow you to use short-codes in posts, products, categories, and other places in WordPress that you aren’t able to by default. However, I don’t know of … Read more
comment_post (if comment is approved OR $comment_approved === 1) not working?
There is no filter hook to customize comment edit fields on admin page. However you can hide those two fields using CSS, add the code below on your active theme. function wp_ste_remove_commentfields() { global $pagenow; if ( $pagenow != ‘comment.php’ ) return; ?> <style> .editcomment tr:nth-child(2), .editcomment tr:nth-child(3) { display: none; } </style> <?php } … Read more
Modify author url display in edit-comments.php
How to customize ‘children comments’ in WordPress?
How can I hide comment of the authors from their published posts?