Search Results for 'buddypress'
-
Search Results
-
Hello,
I have a follow up question to this old thread:
https://buddypress.org/support/topic/how-to-get-notification-count-code/chatty24 asked “Could that also happen in real time (without refreshing the page)?”.
I am having the same question. How can I ajaxify “bp_notifications_get_unread_notification_count( $user_id)”?
Thanks for any help!
WP 6.6.2, BP 14.2.1, Divi theme.
I added a bunch of WordPress users to my site from a csv file using the Import and export users and customers plugin. Worked well. But those users couldn’t figure out how to make friend requests, since they couldn’t “see” the other users that they could ask. After some fumbling through this forum and googling, I came across the “/members” slug. I seemed like exactly what I needed, a list of members with a button to send a friend request to each one. The only problem was that it didn’t show all the users. More ressearch found this post from 10 years ago. Seems the issue was/is that it only shows those users who have had some BuddyPress activity recorded. But since these were mostly new users, most had no activity. So I wrote a little bp-custom.php file containing:
function make_all_users_active() { $users = get_users(); // repete_log(print_r($users, true), __FILE__, __LINE__); foreach($users as $user) { if (strlen(bp_get_user_last_activity($user->ID)) == 0) { // repete_log(sprintf("bp_update_user_last_activity(%s)", $user->ID), __FILE__, __LINE__); echo $user->ID . "<br>"; bp_update_user_last_activity($user->ID); } } } add_action ('wp_loaded', 'make_all_users_active');This solved the problem of not showing all the other BuddyPress members, but as far as I can tell, I’ve now got to tell all the users that if they’re interested in making friend connections, they have to go to the address bar, and type /members right after the domain name. That seems ridiculous! I guess I could add a page containing a link to that slug that they could click, but it would be nicer if I could make a page they could find as one of the site’s pages that would display the information from that slug, without having to click a link. Better still would be to be able to customize the BuddyPress drop-down menu to add an item for “All Members” that would display the slug’s contents…
Using WordPress 6.7
Installed as a root directory
Wordpress is working fine
Using BuddyPress 14.2.1
No other BuddyPress plugins installed
Using Themify theme Peak, no mods
No custom functions
Using bbPress 2.6.11
Hosted by ‘Omnipresents’ is in association with LiquidNet Ltd.
Server running Rocky Linux 8
I have not overloaded any BuddyPress template files
Template Pack BuddyPress NouveauI am trying to set up a forum. Everything is working so far except for recent post, comments, archives, categories are not appearing. Ive tried looking through the forum and looking around in Buddypress with no luck. Any ideas?
Hello,
I am using WordPress and BuddyPress in latest version – in a multisite installation.
My problem is: WordPress post updates do not show in activity stream in none of my sites. They even are not visible in activity database in the dashboard. Other status updates do work fine. I surely enabled the option to have WordPress core updates in the settings.
I tried disabling all other plugins. Issue still persists.
Does BuddyPress has a problem with multisite? Do you have any idea?
Thanks!
Hi, I am using Buddypress v14.2.1 together with BuddyPress Xprofile Custom Field Types v1.2.7 to be able to use select2 with a Multi Select Box field in user profiles.
It seems that select2 works correctly as I get a text field in which when typing, the autocomplete function acts and recommends me some option from my list. The problem is that when I select an option, instead of being added in tag format and I can continue typing in the text field to add more options from the list, a tag containing all the options from my list is added and the text field disappears, so I can not continue adding option from my list.
Here is my multi select box field configured to use select2 as you can see in this picture in the top right corner:
Multi Select fieldAs you can see this new picture, if I access the field and test the autocomplete filter, it seems to work correctly. But when I select an option, this happens and I can not do anything, I can not write to add new options or anything:
select2 problemWhat could be happening? Thanks in advance.
Hi,
WordPress version: 6.7
BuddyPress version: 14.2.1
https://onehomeplanet.com
The issue still happens with Twenty Twenty-Five themeThough BP says that changes are saved, they are only saved under BP Edit tab and in WordPress user profile, but not under BP View tab (which is the content visitors will see…).
Thanks for your help,
Philippe
Topic: Any buddypress builder?
Hi! I want to customize how my buddypress looks like, but I can’t find any plugin. The only one that is available is the buddybuilder for elementor.
Is there any plugin for spectra or astra themes? Thank you.
Iβm encountering an issue with BuddyPress default email notifications on my site. Only two types of emails are being triggered: private messages and friend requests. However, other default emails, such as group invitations and account activations, comments etc, are not being sent. Could you please assist in identifying the cause of this issue or guide me on troubleshooting steps?