Forum Replies Created

Viewing 7 replies - 166 through 172 (of 172 total)
  • Forum: Plugins
    In reply to: Event Registration Plugin
    CrazySerb

    (@crazyserb)

    apparently nobody has done anything like this so far?

    what a heck?

    and I’d think it would be one of the most requested features…

    CrazySerb

    (@crazyserb)

    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 version 2.3.3…

    CrazySerb

    (@crazyserb)

    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…

    just 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 ;))

    Thread Starter CrazySerb

    (@crazyserb)

    Nobody knows? Who developed this feature anyway?!

    I 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?

    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.

Viewing 7 replies - 166 through 172 (of 172 total)