Flowdrops
Forum Replies Created
-
Had a look at your site. There’s a ‘jQuery is undefined’ error in the file ‘/blog/wp-content/w3tc/min/08c9ac/default.include.1891294483.js’. Please fix that and I will have a look again.
Please enable my plugin, otherwise I can’t check what’s wrong. ??
Forum: Alpha/Beta/RC
In reply to: Parameters for wp_list_comments() in 2.7?Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingYour host/site seems down. Couldn’t even find your host within the registered DNS. Once your site is up again, I’ll be happy to help. Thanks.
Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingPlease mark this topic as resolved if there are no more issues, thanks.
Forum: Fixing WordPress
In reply to: query_posts and order by dateForum: Plugins
In reply to: [Plugin: NextGEN Gallery] “Full size” link/description missing from thickboxgregma asked me to have a look at it (altough all mentioned plugins have nothing to do with me). Here’s what I found:
alexrabe did mention it already (thanks, timesaver):
wp-ajax-edit-comments is including the thickbox CSS from the WP Admin section (version 2.1.0.0, wp-ajax-edit-comments.php, line 1004). Also, lines 964 – 968 are IMHO unnecessary and should be changed/removed by the plugin author.
I believe a quick fix (untested!) would be to include the ngg-gallery version of the ‘thickbox.css’ stylesheet just before the head-tag (wp-plugins/nextgen-gallery/thickbox/thickbox.css) but after wp_head().
If that doesn’t help, contact the author of wp-ajax-edit-comments (https://www.raproject.com/ajax-edit-comments-20/).
HTH
Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingPackage updated. Can you please try with this new release. Thanks.
Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingOk, I found that there is something wrong with json_encode. I will update & upload a new package today.
Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingHallo macwoern
Ich guck mir das an, danke für den Link.
Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingThe plugin works well with FF3 & WP 2.6.
Please always provide a link so I can see what’s wrong. Otherwise I’m not able to help, thanks!
Forum: Plugins
In reply to: [Plugin: iF AJAX Comments For WordPress] Not workingHi krez
In order to resolve this issue, I need a link to the website on which you want to install the plugin. Thanks.
Forum: Fixing WordPress
In reply to: Excluding category with query_posts reverses choronological orderForum: Fixing WordPress
In reply to: query_posts and order by dateEdit: it works.
Forum: Fixing WordPress
In reply to: query_posts and order by dateI had the same problem and the only solution I came up with is editing the file ‘/wp-includes/query.php’ on line 1019 (WP 2.5.1), and I believe this is a bug in WordPress:
if ( !empty($q['category__in']) || !empty($q['category__not_in']) || !empty($q['category__and']) ) {
// -> THE FOLLOWING LINE CAUSES THE ORDERBY PROBLEM
// $groupby = "{$wpdb->posts}.ID";
}
So far, this change didn’t screw anything else up on my blog.
HTH