danscattered
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Passwords for this forumIt works on other pages but not this forum. I can’t even copy and paste it to another page.
Forum: Requests and Feedback
In reply to: Passwords for this forumHere is a site for firefox but it still doesnt work
http://ostermiller.org/bookmarklets/utilities.htmlForum: Fixing WordPress
In reply to: Display name for comments displaying login idSo I easily fixed it by changing the wp-comments-post.php file to look at the right table.
Open wp-comments-post.php:
Change $comment_author = $user_login;
on line 24 to:
$comment_author = $user_nickname;
Notice it was calling the login table and not the nickname table. I wonder if it should call the niename table instead, no, I didn’t think so.
Forum: Fixing WordPress
In reply to: Display name for comments displaying login idWhat do you mean. I used the drop down and selected Dan. I also made sure the table in the DB was correct and it was.
Forum: Fixing WordPress
In reply to: V1.5 Comments RSS problemI found a solution:
My solution involves adding a new function in wp-includes/comment-functions.php to return the URL of a specific comment. Here is that function:function get_specific_comment_link()
{
global $comment;
return get_permalink( $comment->comment_post_ID ) . “#comment-” . $comment->comment_ID;
}Then, in feed-functions.php, change comment_link_rss() function on line 58 to:
function comment_link_rss() {
echo get_specific_comment_link();
}Thanks ColdForged