anmari (@anmari)

Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

  • anmari
    Participant

    @anmari

    Yup – delete super cache and delete the lines it added in wp-config.

    Users Cannot View Own Replies


    anmari
    Participant

    @anmari

    for the record, see this post https://bbpress.org/forums/topic/users-cannot-view-own-replies/#post-154445

    I eventually figured out It was only me who couldnt see my own replies and while super cache no longer active, it was still installed. Deleted it and the lines in wp-config and voila i could now see own replies.


    anmari
    Participant

    @anmari

    Thank you – that was it for my missing replies problem too. It was only me who couldnt see my own replies and while super cache no longer active, it was still installed. Deleted it and the lines in wp-config and voila i could now see own replies.


    anmari
    Participant

    @anmari

    Just adding my voice so i can subscribe to topic. also last reply not showing, no bbpress extensions, fairly vanilla setup (2010 theme). Counts/last voice/freshness wrong/inconsistent depending where one looks despite running recalc tools. no cache plugin.


    anmari
    Participant

    @anmari

    Hi Robin W, just letting you know I have the ‘last reply not showing ‘ problem and unfortunately the ‘fix’ does not work for me.
    running 4.0 on twenty ten theme, no super cache.

    Reply is there, can view it separately.

    Topic list header is incorrect (says previous post before the last one was the last activity), topic list shows last voice correctly but when one clicks into the topic the last reply is missing.

    The freshness on the forum list is very wrong (has topic start date, not any of the more recent posts).

    I’ve run the recounts under tools but that does not seem to make any difference.


    anmari
    Participant

    @anmari

    Hi I just tested wordpress plugin Relevansii

    It allows you to override the “exclude from search” that the bbpress custom post types may have.

    It then searches those posttypes too when a normal wp serach is done.


    anmari
    Participant

    @anmari

    For the info of anyone chancing up on this.

    wrt The plugin that justin mentions above. After integrating bbpress and wp 3.0.1, i had my existing members showing up in bbpress as inactive. Not: inactive (no role)

    I changed the plugin as follows: – added the else line

    function inactive_to_member() {

    $userID = bb_get_current_user_info( 'id' );
    $user_obj = new BP_User( $userID );
    $user = bb_get_user( bb_get_user_id( $userID ) );
    if(empty($user->capabilities)) {
    $user_obj->set_role('member');
    }
    else if (is_array($user->capabilities) and ($user->capabilities['inactive'])) $user_obj->set_role('member');
    }
    add_action ('bb_head', 'inactive_to_member', 5, 0);

Viewing 7 replies - 1 through 7 (of 7 total)