Search Results for 'wordpress'
-
Search Results
-
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,
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
Hi there,
My buddypress is updated to the latest verison. Today there was a major WordPress release (6.7) but after upgrading, my buddypress member list, friendships and friendlist stops working. Seems Buddypress needs an update as well, to work with the newest WordPress.
Can you please update the plugin to fit with the latest Wordspress 6.7 as soon as possible?
Thank you !!Hi BuddyPress Community,
I’m using BuddyPress to create a community on my website, but I’m having trouble with user profile pages not displaying correctly. When members view their profile, the layout is broken, and certain elements (like the profile picture and activity feed) aren’t showing up as they should.
Here’s what I’ve tried so far:
Checked for conflicts with my WordPress theme (using a BuddyPress-compatible theme).
Disabled other plugins to see if they’re causing issues, but the problem persists.
Cleared the site cache and checked the site in multiple browsers, but no luck.
Could there be a setting in BuddyPress I’m missing, or does anyone have tips for troubleshooting profile page display issues? I’d appreciate any guidance on how to get these pages to look as intended!Thanks in advance!
I used latest version of buddypress and wordpress also .
IN current buddypress when user join group that time new activity will creat . but i cant stop it using hook .groups_record_activity(
array(
‘type’ => ‘joined_group’,
‘item_id’ => $group_id,
‘user_id’ => $user_id,
)
);


