daisyhead
Forum Replies Created
-
Forum: Plugins
In reply to: Recent comments w/ portion of commentWell, I just tried implementing this again and it worked this time. I was tired the last time I tried it, so it looks like it was user error.
Thanks,
DaisyheadForum: Plugins
In reply to: Online users?Too cool! This works like a charm. The only thing that would really make it rock would be if it could someone use cookies like the MT one to actually list who’s online by who has commented on the site. But this is awesome. Thanks for the link Podz!
-Daisyhead =)Forum: Plugins
In reply to: Online users?Waaait a sec. I got it! Yay! Now to see if it actually works….
Forum: Plugins
In reply to: Online users?I’m trying to type the above into my “run query” box in my wordpress database but I’m getting errors. Should I be typing this somewhere else? I thought I could figure this out. Grr.
-DaisyheadForum: Plugins
In reply to: Online users?Yep, that one will work. One thing though since I’m still learning SQL and whatnot, this part of the instructions:
1) Open up mysql command line tool, and type in these lines:
(this is considering wpdatabase is the name of your wordpress database)
use wpdatabase;
create table usersOnline
(
id int auto_increment not null,
userIP varchar(20) not null,
dateAdded timestamp,
primary key(id),
unique id(id)
);
Or you could use phpMyAdmin or any other MySql admin tool to create a new table called usersOnline
inside your WordPress database with the above columns.I use MyPHPAdmin and I’m not sure I follow what I need to do. I’m going to attempt to try this with what little I know, but if someone could simplify this part for me, I’d really appreciate it.
Thanks,
DaisyheadForum: Plugins
In reply to: Remember info option in commentsI resolved this issue. I switched back from pop-up comments to inline. =)
Forum: Plugins
In reply to: Comment Leader HackI’ve tried tweaking the code to make my output look like this:
Jess – 184 total
last commented: (date of last comment)
on entry: (entry title last commented on w/link to entry)But when I start messing with it, it throws errors. Can anyone cheat for me and post what the actual code would look like to get my output to look like what’s above? Pwetty pwease??
Thanks,
DaisyheadForum: Fixing WordPress
In reply to: Reverting from pop-up to regular commentsUgh. Stupid me. I had an extra div tag. All is fine now. =)
Forum: Fixing WordPress
In reply to: Reverting from pop-up to regular commentsGot it figured out. I was looking for this:
<?php include(ABSPATH . ‘wp-comments.php’); ?>
</div>Forum: Plugins
In reply to: Remember info option in commentsSo it must be a pop-up vs. non pop-up issue. Anyone else have any ideas?
Forum: Plugins
In reply to: Remember info option in commentsNo, because I tested it on Sushubh’s site and it worked fine, yet on my site, it doesn’t. So it’s not my browser. And everyone who comments on my site is having the same problem. It can’t be because EVERYONE has wrong cookie settings.
Forum: Plugins
In reply to: Remember info option in commentsI just tried it on your site Sushubh and it worked, yet on my pop-up comments, it doesn’t. Is there some kind of setting I have to tweak, or could I have removed some code that would do this??
-DaisyheadForum: Plugins
In reply to: Remember info option in commentsNot on my site it doesn’t. You have to enter info every time you comment. Unless there’s some kind of setting I’m missing??
Forum: Plugins
In reply to: Recent comments w/ portion of commentI did copy it verbatum. I haven’t had a chance to try it again, but hopefully I was just doing something stupid and it will work fine.
Thanks,
DaisyheadForum: Plugins
In reply to: Recent comments w/ portion of commentStill having problems implementing this. When I do, I get the actual code executing on my page along with an error about an undefined error on line 5 of my include. Line five happens to be this line:
<?php get_recent_comments(); ?>
Help!