Search Results for 'questions'
-
Search Results
-
WordPress : 6.3.1
BuddyPress : 11.3.1
Youzify : 3.3.9Dear users,
Since +/- 1 month the ‘Load More’ option on the activity page doesn’t work. On mobile (iOS and Android) nothing happens, and on Google Chrome first nothing happens and then a browser error occurs “The page doesn’t reply, would you like to wait or close”.
The “Load More” on other pages (user activity, etc.) works.
Using a lots of plugin which makes it hard for me with my knowledge to understand where it comes from. A new wordpress + buddypress + standard wp theme works fine.
My questions are:
– Is it possible to have pagination on the activity wall stream page but keep the other pages as they are for the timebeing?
– How can I debug where the error comes from?Regards
Hello,
I am just getting my toes into BuddyPress’ documentation, and came across the ‘popular’ user type in BP_User_Query.
I have no idea how ‘popular’ users are defined in BuddyPress. My questions are as follows:
1. How is the ‘popular’ user type defined and sorted in BuddyPress?
2. If ‘popular’ users are calculated across a period of time, could one theoretically sort users into ‘most popular by day, week, month, etc.’?
3. The documentation recommends bp_parse_args() for filtering members. What would a simple function to return popular users using bp_parse_args() look like?What are the benefits of adding FAQs (Frequently Asked Questions) to the home page of a WordPress theme, and how can they improve the user experience?
Hi,
I got few questions.
We are talking about front-end. Not wp-admin.
1. If i promote a member to a moderator in one group, he can invite other members to that group.
2. Can he also delete them from the group? I don’t see such a option.
3. If i go to the wp-admin, promoted moderator, can add and delete members from any group !! why ?
He was assigned moderator only to a specific group.According to https://codex.buddypress.org/translations/ we should store the
bbpress-de_DE.moandbbpress-de_DE.pounder/wp-content/languages/buddypress/, which we did. But these language files are being ignored.We are using buddypress in de_DE and made some tweaks to the wording (we replaced the string “group” with “cluster” in German).
Buddypress uses the files stored under
/wp-content/languages/plugins/and ignores the aforementioned folder.What we already tried:
- deleting the
buddypress-de_DEfiles in/wp-content/languages/plugins/: this partially works. Buddypress then uses our files stored in/wp-content/languages/buddypress/. But somehow wordpress (or buddypress?) regenerates the files in/wp-content/languages/plugins/after some hours. And then these “new” translations are used again of course. (Our own translations in/wp-content/languages/buddypress/stay untouched by wordpress/buddypress) - Created a folder
/wp-content/languages/plugins/buddypressand copied our files over to this folder. But to no avail – these files are being ignored completely (even if we delete the buddypress files in/wp-content/languages/plugins/). - Copied our files directly to
/wp-content/languages/plugins/: this works until these files get overwritten after a couple of hours
Specs:
- WordPress 6.0.1
- Buddypress 10.4.0
- Custom template, which we’ve written on our own
Multisite
Questions:
- What are we missing?
- Is there a way to stop wordpress/buddypress regenerating the files living directly in
/wp-content/languages/plugins/? - What is the right place to store our translations?
Topic: Member profile page
I have some questions;
– For the profile page, I would like to give members the option to edit username/email/password/picture and that’s it (in a custom template). So none of the other things like export data or email notifications.
– Is it possible that when someone visits another members profile page they see their own profile page (or another given page)?
Topic: BuddyPress + WCFM
Hi there,
I have Rehub theme+WCFM.
I have recently installed Buddy Press as I need it for a new feature on my site.
All good so far…I have 2 questions:
1: Creating a vendor (store vendor) account, then clicking on the profile icon at the header> manage your store, the WCFM panel opens, which is great.
BUT also the 4 Buddy Press menu options show above the WCFM panel (profile, listing manager,invitations, created by)
It is really confusing, as if I click on the ‘listing manager’ menu on Bpress then the WCFM panel opens in a funny way.
Is it possible to remove the listing manager option from BPress?
Not sure if it makes any sense, I can send you screenshots just let me know your email address.2: how can I remove the ‘newbie’ sign from members pages?
Thx
WP version: 5.9.3
BPress version: 10.3.0
site: https://manofestum.com/manostaging/en/ (it’s the staging version )Hi,
I did not want to show some things in the activity stream. After searching a long time I did find a snippet what did work.
function bp_activity_dont_save($activity_object) { $exclude = array( 'bp_doc_created', 'bp_doc_edited', 'bp_doc_comment', 'bbp_topic_create', //bbpress 'bbp_reply_create', //bbpress 'created_group', 'joined_group', ); // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function if (in_array($activity_object->type, $exclude)) $activity_object->type = false; } add_action('bp_activity_before_save', 'bp_activity_dont_save', 10, 1);Is this the best way to do this? Or do you have a better sollution?
I cannot find the right term to exclude when someone updates in a group, does someone know that one?Then, I want to get rid off the options in the drop down menu on the activity stream. I did find some code what almost did the trick.
`add_filter( ‘bp_get_activity_show_filters_options’, function( $filters ) {
unset( $filters[‘bp_doc_created’] );
unset( $filters[‘bp_doc_edited’] );
unset( $filters[‘bp_doc_comment’] );
unset( $filters[‘bbp_topic_create’] );
unset( $filters[‘bbp_reply_create’] );
unset( $filters[‘created_group’] );
unset( $filters[‘joined_group’] );
unset( $filters[‘updated_group’] );
return $filters;
} );I think there should be a better way, so I hope someone can advice me with this.
Now i have a strange thing. The Forum topics and replies are not visible anymore in the dropdown so thats good.
The group creation and the group joining are not visible anymore so thats good.
I cannot find the group update term. Does someone know what Term i need?
And, the bp docs are still visible. This is strange because they are not showing anymore in the activity feed, but i cannot get them out of the dropdown menu.
Can someone help me to achieve this? Or give me a better sollution??
Sorry for any bad English
Thanks in advantage
I’m creating a new BuddyPress site that will be primarily organized around Groups. Each Group will represent a city, and each Group needs to have multiple Forums (such as for neighborhoods within the city). Two questions, please:
1) How do I create multiple Forums for Groups? When I set up a new Group, it asks if I want the Group to have a Forum. But it says nothing about having more than one Forum.
2) I’m confused about the difference between a BuddyPress user registration and a BBPress Forum user registration. Do I need both? Does the Forum registration just register them for one Forum, or for use of the whole BuddyPress site? If they register in BuddyPress, do they also need to register to take part in a Forum?In general, I don’t understand why BuddyPress and BBPress are separate plugins. It would make a lot more sense (and be less confusing) if they were all in one plugin, wouldn’t it?
Hi guys,
we have a big networks which keeps growing and growing – currently 20k users and still going strong. We want to try to tweak and improve every tiny screw / setting and we are just optimizing the database. Because: The DB is already 1.5GB and it’s growing fast.
We identified a LOT of “default” metadata with every update / activity / post, hence this questions arise, I dig deep already 🙂
1. Is it safe to delete the activity data where _link_embed=0 and _link_preview_data=”” (empty)? It comes for EVERY activity. 60% of ALL 100k activity rows are those “default” settings.
2. Is it safe to delete the meta-data for sent messages which do NOT have a media, e.g. gif_raw_data or _gif_data or bp_media_ids empty values? In wp_bp_messages_meta
3. Wouldnt it be possible to convert ALL userid fields (in messages, activity, users, friendship etc tables) to INT instead of BIGINT? This would reduce storage, index sizes, index scan time etc … We will never have 4 million of users…
4. Would it do any harm when deleting “deleted” messages? I.e. messages from wp_bp_messages_messages where Subject==”Deleted” and message empty?
5. Is it really necessary to store the subject of a message thread redundently? So for one thread within wp_bp_messages_messages we sometimes have 50 entries, all with the same subject.. (varchar…)
6. the table wp_postmeta grows huge, because unfortunately, all uploaded attachements are handled as posts, hence quite some plugins like WPML or ELEMENTOR hook into it and save their metadata for every damn single uploaded attachement 🙁
Thanks so far, hope we can get a really good discussion going here!!!!
- deleting the
