ryanmc
Forum Replies Created
-
Forum: Plugins
In reply to: [CSV Importer] How do I import a custom CSV file? [csv-importer]Yes, that is the correct plugin. I noticed the other forum titles looked like this “[Plugin: CSV Importer] …” , hopefully I can get the attention of the author.
Also how can I report a bogus plugin? There is another CSV plugin that I found http://ww.wp.xz.cn/extend/plugins/csv-2-post/
I could not get this plugin to work, and while looking for support I went to the authors website where I read this
“Downloading the demo plugin will allow you to test CSV 2 POST on your own blog and check to see if your csv files work alright. It is not intended as a solution, it will not operate to the point of creating posts and has no trial system but it will help you decide if this is the right solution for your client.”
He admits that it will not actually post anything, and that you have to pay him to get a working version. I think this plugin needs to be removed from the wordpress website.
Forum: Plugins
In reply to: [CSV Importer] How do I import a custom CSV file? [csv-importer]Thanks Samuel, but if you look at the tags you will see that this is a reply to the csv-importer (the only post importing plugin at the link you provided). I was hoping for help from the author of that plugin. I know I forgot to include the plugin name in the title, and I would have changed it, but I cannot see a way to edit a post.
I guess I will start a new topic with the name of the plugin in the title. It would be nice if I could edit the original title and save the time, and mess of starting a new topic.
Forum: Plugins
In reply to: [CSV Importer] How do I import a custom CSV file? [csv-importer]Any help on this one?
Forum: Plugins
In reply to: [CSV Importer] How do I import a custom CSV file? [csv-importer]Here is the pastebin url
Forum: Requests and Feedback
In reply to: Unschedule a scheduled postI second this. I think this functionality would be so easy to fix, but right now it is so confusing that it messes up a lot of people. I have had several posts “automatically” schedule themselves and now I have no way to unschedule them. I just want them to go back to how they were.
Please add a way to clear the schedule, this should be super easy.
Any word on when the new version will be released?
Forum: Fixing WordPress
In reply to: query_posts results change when I log inNevermind, when I disabled all my plugins the problem went away. I think it might have been the wp-supercache plugin made a static copy of that page and never updated it.
Is this ready for a production site?
Forum: Plugins
In reply to: Custom Fields in Comment formThe plugin can be hard to grasp at first. I had to do a lot of code searching it get things exactly the way I wanted. I also do not use the built-in integrations. I included the functions directly on my pages so I would have more control over how it worked and looked.
In my functions.php file I define my own comment function and I use wp_gdsr_comment_integrate_standard_result to display the results in read only. In the comment form I am using wp_gdsr_comment_integrate_standard_rating for the users to vote with.
Good luck
Forum: Fixing WordPress
In reply to: Removing users from db who don’t have posts or commentsI just ran across this plugin and I am currently testing it. Seems to work ok, but I am adding some functionality so it does more for me. http://www.dagondesign.com/articles/clean-up-users-plugin-for-wordpress/
Forum: Plugins
In reply to: Custom Fields in Comment formUse this plugin (http://www.gdstarrating.com/) it is spectacular. I use it on my blog (http://www.justechn.com) and I write reviews all the time. With this plugin I can add my own rating to my reviews, my readers can add theirs, and they can also thumbs up/down comments and the review. Just take a look at one of my review pages (http://www.justechn.com/2009/10/21/review-epson-artisan-810-all-in-one-photo-printer). There are stars on the top right that summarize the ratings, then at the bottom is my detailed rating and in the comment form is a place where readers can rate the review with stars.
Forum: Plugins
In reply to: [Plugin: Revision Control] Function to delete all revisions?This plugin works great for that
http://ww.wp.xz.cn/extend/plugins/delete-revision/I agree that a single plugin that did both would be great.
Forum: Plugins
In reply to: [Plugin: Simple Tags] please updateThe plugin still works, you just need to make a small modification.
Open the file simple-tags.php, on line 35 you should see this:
if ( strpos($wp_version, ‘2.7’) !== false || strpos($wp_version, ‘2.8’) !== false ) {change it to this:
if ( strpos($wp_version, ‘2.7’) !== false || strpos($wp_version, ‘2.8’) !== false || strpos($wp_version, ‘2.9’) !== false ) {Like magic it works.
Forum: Requests and Feedback
In reply to: [Plugin: Akismet] No False positivesI can definitely see all the spam. Could it be that your browser has cached the spam queue page and always shows empty? Have you tried a different browser or a different computer?
Forum: Plugins
In reply to: I need help writing a plugin for commentsOh I should add that Akismet already catches 99% of these, but I would prefer if they were just automatically deleted.