Search Results for 'buddypress'
-
AuthorSearch Results
-
June 20, 2018 at 8:33 am #274579
In reply to: How to add link to profile pages navigation bar
bekircem
ParticipantI added link with function.php But how i set custom link (http://forum.site.com) for that?
/** * adds the profile user nav link */ add_action( 'bp_setup_nav', 'add_calendar_2_bp_nav_item' ); function add_calendar_2_bp_nav_item() { global $bp; $args = array( 'name' => __( 'Study Hall', 'buddypress' ), 'slug' => 'http://site.com', 'default_subnav_slug' => 'my-study', 'position' => 24, 'screen_function' => 'bp_nav_tab_stuff', 'item_css_id' => 'my-study', ); bp_core_new_nav_item( $args ); }June 20, 2018 at 2:47 am #274570Dggerhart
ParticipantThanks for the suggestion, Varun. I’ll read about it.
For the record, here’s a link for anyone reading this in the future:
Discusses the options, and ‘wares to deploy … but seems really dated.
WordPress.com suggests:
https://github.com/pixeljar/BuddyPress-Honeypot
But I can’t verify it’s compatible with the newer systems (6 years old.)
My problem persists, but seems to run in spurts…
June 19, 2018 at 8:37 pm #274569In reply to: Avatars & ‘add friend’ button not working
mojomo
Participant@ vapvarun: Following your advice, I switched back to the default WP theme (2017), turns out that BuddyPress works fine with the default theme and all plugins activated. It seems to be an issue with my theme after all. The theme devs are looking into this matter now. Thank you.
June 19, 2018 at 4:41 pm #274560In reply to: set username=email in registration
Venutius
ModeratorHere’s what I found:
add_action( 'bp_core_validate_user_signup', 'custom_validate_user_signup' ); function custom_validate_user_signup($result) { unset($result['errors']->errors['user_name']); if(!empty($result['user_email']) && empty($result['errors']->errors['user_email'])) { $result['user_name'] = md5($result['user_email']); $_POST['signup_username'] = $result['user_name']; } return $result; }You would also need to copy
plugins/buddypress/bp-templates/bp-nouveau (or bp-legacy ) /buddypress/members/register.php tothemes/your-child-theme/buddypress/members/register.php and edit it to remove the section that asks for the username:<label for="signup_username"><?php _e( 'Username', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <?php do_action( 'bp_signup_username_errors' ); ?> <input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value(); ?>" />June 18, 2018 at 2:59 pm #274541OreilleMalade
ParticipantHello,
Strang behavior here. I was using BuddyPress on 3 sites. On one of them the upgrade to 3.0 ran perfectly. But on the 2 other ones a problem showed up: when you visit some pages you get a 404 error.
- If you deactivate BuddyPress the problem instantly disappear.
- Strangely, if you save again the permalink structure it seems to work OK during a little moment, then the problem gets backs again.
Any idea?
See https://rencontre-surdoue.com/
For example : https://rencontre-surdoue.com/adultes-surdoues/chat/Don’t know if that could be related to this thread? : Oops! That page can’t be found. for all groups activities
Best Regards and keep up the good work! 🙂
June 18, 2018 at 12:46 pm #274539janurmas
ParticipantHello, Mastershas! Thanks, for your help. Now the admin bar is removed from logged-in users. It was that simple. But I have no idea with how to do with customizing the BuddyPress theme. I think this would have some code tweakings. And the Buddydev is a good idea. I’m gonna try it. Many thanks!
June 18, 2018 at 8:58 am #274528Shashi Kumar
Participant1. To hide admin bar to non-logged in user, you can use a plugin name Remove Dashboard Access.
2. There is no direct method to make BuddyPress profile page full-width. You can achieve this by editing Buddypress templates. To do this
Create a child theme
Put Buddypress folder in your child theme and edit the profile template. To do we should understand the templating system of Buddypress. Here is a tutorial for that.3. You can use a plugin by Buddydev which lets you write posts from front end and add blog tab under user’s profile menu.
Hope this help you.
June 18, 2018 at 8:12 am #274523Varun Dubey
Participant@sarojweb You can compose emails inside BuddyPress Emails options and for available tokens you can check
June 17, 2018 at 5:45 pm #274505In reply to: Avatars & ‘add friend’ button not working
mojomo
ParticipantI was able to fix the avatar issue. The Firefox add-on Ghostery caused the problem. Deactivating the add-on brought back the avatars.
However, the “add friend” button is still not working. When I deactivate all plugins except for BuddyPress, the problem persists.
June 17, 2018 at 4:53 pm #274498In reply to: How to change language
Varun Dubey
Participant@filozof86 Try Loco Translate Plugin, you can also check https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/
June 16, 2018 at 6:49 pm #274492In reply to: Notification from bbpress to buddypress
dedotombo
ParticipantOneSocial by BuddyBoss, is it possible to use BuddyPress 3 in a “legacy” mode?
June 16, 2018 at 4:04 pm #274488In reply to: Notification from bbpress to buddypress
dedotombo
ParticipantI have the exact same issue using BuddyPress 2.9.4 (cannot update to 3 because of theme) and bbpress 2.5.14.
June 16, 2018 at 3:59 pm #274486In reply to: Blank Notifications
dedotombo
ParticipantI have the exact same issue using BuddyPress 2.9.4 (cannot update to 3 because of theme issues) and bbpress 2.5.14 (latest).
June 15, 2018 at 10:46 pm #274475In reply to: Prevent Group Post from Showing on Profile Activity
balebond
ParticipantJust found a near-hit for my needs in this post by @modemlooper:
https://buddypress.org/support/topic/disable-group-posts-from-main-activity-stream/
However, the code below is stripping group posts from both the “Activities” page and a member’s page activity. I tried to limit to user pages only by altering if ( bp_is_current_component( ‘activity’ ) to if ( bp_is_current_component( ‘profile’ ) but didn’t work. Anyone see what I need to change so that this snippet only fires if it is on a member’s activity page?
function bp_filter_groups_from_activity( $a, $activities ) { if ( bp_is_current_component( 'activity' ) ) { foreach ( $activities->activities as $key => $activity ) { if ( $activity->component =='groups') { unset( $activities->activities[$key] ); $activities->activity_count = $activities->activity_count-1; $activities->total_activity_count = $activities->total_activity_count-1; $activities->pag_num = $activities->pag_num -1; } } $activities_new = array_values( $activities->activities ); $activities->activities = $activities_new; } return $activities; } add_action('bp_has_activities','bp_filter_groups_from_activity', 10, 2 );June 15, 2018 at 1:12 pm #274455In reply to: Not a spammer but marked as a spammer
Venutius
ModeratorLeave BuddyPress Active, deactivate all other plugins, see that these will not be there, then re-active the plugins one by one till you find the one that is marking the users as spammers.
June 15, 2018 at 1:09 pm #274454In reply to: Not a spammer but marked as a spammer
xprt007
ParticipantHi
Thank you for the quick response.
The question is which plugin?
I tried deactivating a couple starting with Aksimet and when I reached bbforum & buddypress & deactivated both: the pink background of the “Spammer” user disappeared, as well as the link “Extended”. They both do not reappear with bbforum activated. (See screenshot)
That made me assume it’s Buddypress that’s responsible for this pink background and the Extended link.
Moreover it’s under “Extended” edit of User on “wp-admin/users.php”, that one gets the status shown and where one can change from Spammer to Active, which will not work.So just wondering … Or may be I’m just overlooking something obvious?
Regards
June 15, 2018 at 11:10 am #274452In reply to: Not a spammer but marked as a spammer
Venutius
ModeratorBuddyPress does not mark users as spammers, it must be some other plugin that’s doing that
June 15, 2018 at 9:52 am #274451In reply to: Not a spammer but marked as a spammer
xprt007
ParticipantI need to add, Wordfence is set to immediately block non-existent usernames and this particular user is actually there. Checked the spelling several times, correct password! So could it be Wordfence takes a cue from this Buddypress Spammer status business?
Anyway, the question is how does the admin remove another admin or other user from spammer status?June 14, 2018 at 2:30 pm #274434Varun Dubey
Participant@cgkid You can check bp moderation pro
June 14, 2018 at 12:50 pm #274429In reply to: How to perform user search with ‘OR’?
Varun Dubey
ParticipantJune 14, 2018 at 9:08 am #274422In reply to: Can’t Post in Activity Stream
Anonymous User
Inactive@aaronpods no problems.
Have you deactivated all plugins/bp-custom.php/mu-plugins/ except BuddyPress ?
I think there’s something preventing the regular Nouveau JavaScripts to load. As the post form needs it to be displayed because it uses BackBone.JS views, it’s the reason. The other script/plugin is only conflicting with the activity directory, as i’ve checked your profile, the Nouveau JavaScript are loading.
June 14, 2018 at 8:46 am #274421In reply to: checkout page: required field
meestergijs
ParticipantSolved. I had to tick the option: Sync BuddyPress signup email address with WooCommerce billing email address in the WC4BP plugin..
June 13, 2018 at 7:33 pm #274407ahad77
Participantmy bp them is sweetdate
The selected Template Pack will serve all BuddyPress templates running buddypress NouveauJune 13, 2018 at 7:23 pm #274406Venutius
ModeratorMight be wise to confirm with you which bp theme you have in dashboard>>settings>>buddypress>>options ? are you running Nouveau?
June 13, 2018 at 6:50 pm #274398 -
AuthorSearch Results