pantsonhead
Forum Replies Created
-
Forum: Plugins
In reply to: [RSS Blogroll] Change the date formatThat’s a good suggestion. I’ll try and add it to an upcoming release.
Forum: Plugins
In reply to: [Random Text] [Plugin: Random Text] Change speed of rotation?I’m not sure I understand how you are trying to use the randomtext plugin if page refreshes are causing an issue, and you are receiving complaints about people having trouble posting comments. Can you post a link to the website?
Forum: Plugins
In reply to: [Random Text] Fatal ErrorCan you give me some more information about the fatal error?
- Is there any error text displayed?
- Which version of WordPress are you using?
- Which plugins are activated? (These may be causing a conflict)
- Can you reproduce the error with a clean WordPress install?
Thanks, for your feedback. I’ve just released v0.3.0 which cleans up the custom database table on uninstall. Internationalisation is next on the list of improvements.
Forum: Plugins
In reply to: [Change Media Parent] [Plugin: Change Media Parent] Please UpdateI don’t have v3.4.2 installed to test against but it appears to work fine in v3.5.1.
ScreencastI wonder if there is a conflict with another plugin. You could test that by disabling all other plugins and enabling them one by one until it stops working. If it still fails with all other plugins disabled it might be a theme conflict or a specific v3.4.2 issue.
Let me know if you can track down the conflict and I’ll try and resolve the issue.
Pagination should be fixed now from version 0.2.9
Forum: Plugins
In reply to: [Regenerate Thumbnails] [Plugin: Regenerate Thumbnails] CPU usagewp_generate_attachment_metadata() currently does not skip thumbnails if they already exist. This is definitely worth bearing in mind if you have extra custom image sizes or a large volume or images as ALL image sizes are reprocessed which can take a very long time.
I altered my copy of the plugin to check if the file for each image size already exists and only generate those required. Tests suggests this reduced the processing time by about 70%.
Forum: Plugins
In reply to: [Plugin: Comment Rating] Incorrect combined totalHmmm, looks like the downvotes I imported from an older system should’ve been converted to positive values. Ignore the previous post.
Forum: Plugins
In reply to: get_cat_id is returning false, but how?relvao is correct, you must use the category name, not the slug.
Also, this function will NOT return the ID if your category name contains “&”.
example: get_cat_ID(‘Bits & Pieces’);
Forum: Plugins
In reply to: [Plugin: WP-FacebookConnect] use $object->user_id in get_avatar()Hi James
That is incorrect, you are still just passing the object’s user_id value, just use this (as long as $object->user_id exists):
<?php echo get_avatar($object, '96'); ?>