How to change comment-page-1#comment-25 to any string?
How to change comment-page-1#comment-25 to any string?
How to change comment-page-1#comment-25 to any string?
First, you have a blog on WordPress.com, so you can’t change any code to make this happen. To start with, is all of the “background” above correct? Yes. Is there a way to enable the reply buttons on all levels of comments? No, not on WordPress.com. If you self host a site, there are ways … Read more
How can I see whether a commenter has subscribed to be notified of replies / other comments to a post
Find all the functions “get_avatar” used in your theme folder. Identify the wrong calls echo get_avatar($comment,$size=”48″,$default=”<path_to_url>” ); or echo get_avatar($comment,48,'<path_to_url>’ ); If you find these,then change it to echo get_avatar( $comment, 48 ); . Hope this gonna help you 🙂
How to create a designated comment page with custom fields
Not receiving any e-mails after new comment
You can use facebook’s graph API to write a script that will import the comments from facebook into your site. Then Disqus can import your comments from the site. This is the api instructions for getting comments. Alternatively, it looks like someone has already written a plugin that does this though they charge.
Finally I found a way and I am posting it here to address any further requests for such a workaround. You may add a customized version of comment_form_title function to your theme’s functions.php file and call it in your theme’s comments.php file. function my_comment_form_title( $linktoparent = true ){ global $comment; $noreplytext = __( ‘Leave a … Read more
There are essentially two scenarios here: The behavior is technically correct, you interpret configuration incorrectly The behavior is technically incorrect, as caused by something Unfortunately there are a lot of moving part in processing the comment submissions. The part most relevant to moderation is in check_comment() function. It checks: if moderation is enabled if comment … Read more
There is one more way to achieve this, without overriding files, using functions.php. Add following code in functions.php file. add_filter(‘wp_list_comments_args’, ‘override_args’, 10, 1); function override_args($args) { $args = array( ‘style’ => ‘ol’, ‘short_ping’ => true, ‘avatar_size’ => 56, ‘per_page’ => ‘3’ ); return $args; }