Forum Replies Created
-
In reply to: How To Add “New Topic” button
Ok i have created the New topic page as suggested by @erich199. It works as expected but the problem is i also have buddypress group forums.
The form shows all group forums including those that user has not joined and let them create topic to any group forum.
I would like to either
1. Hide all group forums or
2. Show only those group forums that user has joined.Thanks
Thanks for sharing. I shall test it and give feedback soon.
In reply to: List subscribers of a forumSubscribed. I asked same question a few days ago.
Many Thanks. User Switching plugin solved my issue.
There should be solution to this problem and it should be built in bbpress plugin. Please inform core team about it.
Please try to understand the situation. I have demoted him. He is angry naturally. He can unsubscribe himself but i don’t trust him now. How shall i know he is unsubscribed or not?
There are email notification settings in Profile but they are only related to buddypress.
I checked in dashboard as well but could not find any settings that will let me unsubscribe a user to a forum or topic.
It is related to bbpress.
Plugin you have shared does not even works for topics. I can unsubscribe only myself with it.
I am using latest bbpress Version 2.5.8
Plugin you suggested only works for topics but i mainly need similar solution for forums.
Actually i have recently demoted a moderator and have also removed him from hidden group that is restricted to only staff members. I don’t know he was subscribed to staff group forum or not. I can’t use it until i am sure he is not subscribed to forum.
I think these settings should be saved somewhere in database. If these settings are saved in database, where and how can i edit them manually?
I am talking about only hidden or private buddypress groups.
Admin can ban or remove users from groups in buddypress. I have tested that new topic notifications with message are sent to banned users that i don’t want, if they are subscribed to group forum.
If group admin ban a user, Ideally banned user should be automatically unsubscribed to group forum. But according to my tests new notifications are still sent by bbpress plugin to banned or removed users.
How can i myself unsubscribe a user to a forum or topic?
In reply to: BBpress post edit causes multiple activity entriesYou must edit the file activity.php that is located at /wp-content/plugins/bbpress/includes/extend/buddypress/activity.php
find
// Get the activity stream item, bail if it doesn't exist
and apply the patch manually that i have given in post # https://bbpress.org/forums/topic/bbpress-post-edit-causes-multiple-activity-entries/#post-160330
In reply to: BBpress post edit causes multiple activity entriesThanks it is fixed.
I used patch below for bbPress: Version 2.5.6
// Get the activity stream item, bail if it doesn't exist $existing = bp_activity_get_specific( array( 'activity_ids' => $activity_id, 'show_hidden' => true, 'spam' => 'all', ) ); if ( empty( $existing['total'] ) || ( 1 !== (int) $existing['total'] ) ) { $existing = new BP_Activity_Activity( $activity_id ); if ( empty( $existing->component ) ) return null; }
In reply to: BBpress post edit causes multiple activity entriesI would like to give these patches a try.
Do i need to edit a file? Which file? Where it is located?
Thanks
In reply to: BBpress post edit causes multiple activity entriesThanks for the reply.
How to apply the patch?