• Hi Robin,

    You had asked me to post on this support forum about the issue I talked about on the bbpress forum.

    “For some reason the “Replies Created” Tab on an participant profile page is empty unless the the user viewing it is logged in as an admin/keymaster. Is there a way setting I’m missing here to have this be displayed to all participants including the author of those replies? I’m using the private groups plugin as well incase that matters.”

    I had deactivated the plugin as a test and it does indeed look like private groups might be the culprit. I’d like to continue using the plugin and see if there is a work around possible to get the posts to show up under the topics started tab again.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Robin W

    (@robin-w)

    sorry, I will get to this, but tied up at the moment

    Thread Starter PDidee

    (@pdidee)

    Lemme know if you need me to create an admin login for you on the staging site.

    Thread Starter PDidee

    (@pdidee)

    Hey Robin,

    I had another developer look into the issue after trying to trouble shoot this with no success. We did find a solution though and a possible bug in the plugin:

    “This wasn’t easy to investigate but I managed to find the cause, which is in bbp-private-groups/includes/replies.php. The filter causing the problem is:
    add_filter (‘bbp_get_user_replies_created’, ‘pg_get_user_replies_created’);

    The problem appears to be that the above filter expected $user_id as the first parameter, but bbPress uses “bbp_has_replies” (boolean) as the first parameter and “user_id” as the second parameter.”

    You can fix the problem by disabling that one filter:

    // NEW CODE START
    function aa_fix_bbp_private_groups_on_user_replies_created_profile() {
    remove_filter(‘bbp_get_user_replies_created’, ‘pg_get_user_replies_created’);
    }
    add_action( ‘init’, ‘aa_fix_bbp_private_groups_on_user_replies_created_profile’ );
    // NEW CODE END

    Hope this helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Possible plugin conflict with “Replies Created” tab’ is closed to new replies.