CrazySerb
Forum Replies Created
-
Forum: Plugins
In reply to: Event Registration Pluginapparently nobody has done anything like this so far?
what a heck?
and I’d think it would be one of the most requested features…
Forum: Fixing WordPress
In reply to: Only admin can see archives page – the world sees 404I have the same issue here, and I can’t figure out why the posts/pages show up ONLY when I’m logged in as admin (any other user level doesn’t work).
Running version 2.3.3…
Forum: Fixing WordPress
In reply to: Pages only load when logged in!I have the same issue here, and I can’t figure out why the posts/pages show up ONLY when I’m logged in as admin (any other user level doesn’t work).
Running 2.3.3 version…
Forum: Plugins
In reply to: WP Category Posts and WordPress 2.3just open up the plugin and change this:
$get_posts_in_cat = "SELECT $wpdb->posts.ID, $wpdb->posts.post_title, "; $get_posts_in_cat .= "$wpdb->post2cat.post_id, $wpdb->post2cat.category_id "; $get_posts_in_cat .= "FROM $wpdb->posts, $wpdb->post2cat "; $get_posts_in_cat .= "WHERE $wpdb->posts.ID = $wpdb->post2cat.post_ID "; $get_posts_in_cat .= "AND $wpdb->post2cat.category_id = '$catID' "; $get_posts_in_cat .= "AND $wpdb->posts.post_status = 'publish' "; $get_posts_in_cat .= "ORDER BY $wpdb->posts.post_title ";
to this:
$tp = $wpdb->prefix; $get_posts_in_cat = "SELECT ID, {$tp}term_taxonomy.term_id as category_id, post_title FROM {$tp}posts, {$tp}term_relationships, {$tp}term_taxonomy WHERE {$tp}posts.ID = {$tp}term_relationships.object_id AND {$tp}term_relationships.term_taxonomy_id = {$tp}term_taxonomy.term_taxonomy_id AND {$tp}term_taxonomy.taxonomy = 'category' AND {$tp}term_taxonomy.term_id = '$catID' AND post_status = 'publish' AND post_type = 'post' ORDER BY post_title ";
should work just fine (works for me ;))
Forum: Fixing WordPress
In reply to: Publishing content for Premium Subscribers?Nobody knows? Who developed this feature anyway?!
Forum: Fixing WordPress
In reply to: User Grouping / Private CatogoriesI want this too… or maybe just the ability to give certain permissions/restrict viewing of certain areas of the wordpress to certain user levels (1-10). After all, what good are those user levels if we’ve got only admins and editors?
Forum: Fixing WordPress
In reply to: Search results displayed as links?any updates on this feature? (most of those links above are not working!)
version 1.5.1.2 still doesn’t list search results as links but rather as whole posts/pages and that is extremely annoying.