Search Results for 'buddypress'
-
Search Results
-
Hi
I make member profile page private for everyone with this snippets in my child theme functions.php file:
function remove_xprofile_links() { remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 3 ); } add_action( 'bp_init', 'remove_xprofile_links' ); function my_private_profiles() { if ( ! bp_is_user_profile() ) return; if ( current_user_can( 'manage_options' ) ) return; if ( bp_loggedin_user_id() == bp_displayed_user_id() ) return; bp_core_redirect( home_url() ); } add_action( 'init', 'my_private_profiles' );But I need to disable the members access to a single user front page. Can you help me?
Thanks in advance!
Hello,
It appears when upgrading to Buddypress Nouveau, the member directory pagination disappears and unable to make it appear.
Is anyone else having this issue and would you mind sharing your workaround?
I am using Woffice Theme by AlkaWeb version 2.8.x which has Nouveau support. If I move back to 2.7.x without it, the pagination reappears and all is fine.
I have tried Buddypress settings as Legacy and Nouveau and this does not appear to help.
Thank you all in advance!
My site has developed an issue since last updates where the friend request button no longer works. If I copy the link to a new tab it will trigger the event, but the button itself is no longer firing.
Using BuddyPress 4.1.0, WordPress 5.0.3
Hi
I’m using WP MAIL plugin to send email firstly emails from BuddyPress hasn’t been able to be sent but after I added this line of code in bp-core-functions.php
add_filter('bp_email_use_wp_mail', '__return_true');
the BuddyPress emails are sent successfully using the wp-mail configuration but the format changed to plain text.
I want to restore the HTML email format while keeping the wp-mail SMTP configuration.I appreciate any help @djpaul
Hello,
I am trying to figure out how to change/translate some BuddyPress slugs and came across this aging URL:
At the bottom of the page I followed these instructions, created a bp-custom.php and copied it in wp-content/plugins:
To change slugs on the sub nav on a member page add these defines to a file bp-custom.php and place this file in /plugins/bp-custom.php
define( ‘BP_SETTINGS_SLUG’, ‘settings’ );
define( ‘BP_XPROFILE_SLUG’, ‘profile’ );The problem is, if I change the term ‘settings’ to anything else, my profile menu completely disappears and I get a 404 warning.
Is this code still viable? I have Buddypress and bbPress installed and using a KEO child theme. I am on a tight schedule to launch my site, so any suggestions that help me out are really appreciated.
Regards,
MartinI have BuddyPress 4.1.0 and bbPress 2.5.14 installed on a WordPress 5.0.3
I already tried resetting the permalinks. I have not tried disabling and re-enabling all other plugins. I’m hoping it’s a simple fix.
I am having URL Rewrite issues.
This URL works and gets me to a page which lists all groups/my groups.
//example.com/groups/For testing, I log in as a user having the wp ‘subscriber’ role who is a member of one of the private groups listed.
I click on the group to which the user is a member and it takes me here:
//example.com/groups/regenerative-farming-discussion/forum/This is good. This is where I want the user to be. But on this page, the user has the ability to see how many other members are in this group and clicking the ‘members’ button should take the user to a page that lists only the members of that group. When I hover over the members button, the URL that displays is
//example.com/groups/regenerative-farming-discussion/members/but when I click on the members button, the URL I am taken to is
//example.com/members/which is a page that lists ALL the members. NOT what I want.
Similarly, if I’m logged in as a user and I go to the Members page (//example.com/members/), and I click on a member’s name, I’m taken to the member’s page:
//example.com/members/member_name/I see that this member belongs to 2 groups. I want to know which ones, so I should click on the tab that says “Groups (2)” to see which two groups the person belongs to. When I hover over that tab, the URL displayed is
//example.com/members/member_name/groups/but when I click on it I am taken here instead
//example.com/groups/which lists all the groups. NOT what I want.
What can I do to fix the errant rewriting of these URLs?
Topic: whitelist user
How can I whitelist a user (or users) so that their posts will never be held for moderation? Is there a plugin or function available?
I’m using the current versions of WP, buddypress, bbpress, Kleo, on a digitalocean cloud server running the latest versions of Ubuntu, nginx, and MariaDB.