Search Results for 'private'
-
Search Results
-
WP version 6.4.2, BuddyPress v. 12.1.1 and BP classic 1.2.0 site is learn.knityourdog.com (login required) running reservoir/fluida theme.
Have 3 groups set up so far, all show “loading group updates, please wait” and nothing ever loads. Private messaging between members is working, public messaging is not. Cannot even click to activate the function.
No change when using Twenty Twenty-Three theme. Same problems exactly.
Have never had this issue on a BP site before and this is my 4th. Unsure how to remedy.Topic: Forum pagination problem
Wordpress 6.4.2
BBPress 2.6.9
Buddypress 12.0.0Hi,
Pagination in buddypress fora (private group forum) is not working anymore. Only de first page is shown, whatever pagenumber one clicks on.
e.g
forum /groepen/icsi/forum/page/2/ shows page /groepen/icsi/forum/
topic /groepen/icsi/forum/topic/icsi-2023/page/3/ shows /groepen/icsi/forum/topic/icsi-2023/This renders these fora unusable if sorted on datetime ascending.
There are no errors or warnings in the php logfile.
Deactivating all plugins (except bbpress, buddypress) does not make any difference. Changing theme does not make any difference.
Pagination under BBpress fora works fine.
So it seems that buddypress does not react on the last part of the url’s (e.g. /page/3/ )
Temporary workaround :
Up the amount of topics and replies per page under bbpress settings so that pagination does not show up.
Hello,
I want to make a group that is showing the content, but the user would not be able to post unless he request to be a member (which the admin or mods could approve).
So far I tried with altctrl public group, but it’s out dated and it’s not working.
I tried with private groups, but I cannot make their content visible.Any suggestions?
Best regards,
Topic: Remove and hide groups
Hey! Newbie here and my idea is to create clean forum, but as I see there is forum and groups. Do i need groups for anything, if I only want forum section? And if the groups are not needed, how I disable it and remove all groups related things? I tryed to deactivate it from settings->BuddyPress-> Deactivating this “User Groups
Groups allow your users to organize themselves into specific public, private or hidden sections with separate activity streams and member listings.” but after doing this my homepage freezes on pc..I am just thinking that these groups things could be too much as I want simple and clean + easy to use forum.
Is it possible to easily make a link (that I can place in a button) that replicates the “Private Message” button that appears at the top of people’s profiles? Hovering on that link includes a nonce, the target nickname and my own user nickname.
What I’d like is a button that I can place somewhere on the site which lets any user go directly to the compose screen with (specifically) my nickname already inserted in the “Send @username” field.
So something like https://domain.com/messages/compose/?r=meeeeeee (but working).
I am missing the buttons seen on this article https://codex.buddypress.org/administrator-guide/messages/
When I was working on it and trying it out, they popped up once, but I can’t get them to come up again.
I am using generatepress theme not sure why I would see them once but not again. How do I get those buttons back?
my website is inspireherpossibilities.com
I am using Buddypress Legacy.
Topic: Private and public messaging
Hi,
I am unable to explain in a clear and succinct way to my website’s future members how to send private or public messages and how to do it individually or in bulk (addressing group members, for instance). One reason for my incapacity is that there is a little bit of information everywhere about these topics, which is often contradictory. The other is that the info is generally obsolete; for instance, I have never seen a “Public Message” button or an “Add Friend” one, though this is still given as true in the tutorials. I have looked around a lot, to no avail.
Can you point me to an up-to-date and thorough tutorial outside of the official BP documentation?
Thanks for your help,
Philippe
WP Ver: 6.3; BuddyPress Ver: 11.2.0; BBPress Ver: 2.6.9
Hi, as creating a group and applying it to an existing private forum A is not possible, a new, empty, private forum B is created by default instead. Once the existing forum A is added to the group, will it break anything to remove the newly created empty forum B?
The two forums appeared to be linked in some way.
Thanks.I have created a new group with the below code.
// Define the group details. $group_args = array( 'creator_id' => get_current_user_id(), // The ID of the user who creates the group. 'name' => 'My New Group', // Replace this with the desired group name. 'description' => 'This is a sample group created by code.', // Replace this with the group description. 'status' => 'public', // You can set the status to 'public', 'private', or 'hidden'. ); // Create the group. $group_id = groups_create_group( $group_args ); if ( ! is_wp_error( $group_id ) ) { echo 'Group created successfully. Group ID: ' . $group_id; } else { echo 'Failed to create group: ' . $group_id->get_error_message(); }I want to update the created group status from “public” to “hidden” but I cannot find the proper hook/function.