Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Can't edit Groups with no Admin #25891

    Hi Mike,
    I am glad you are able to edit from front end. The issue is most probably a bug in BuddyPress and we should report it to the BuddyPress trac.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] BP Group Description #25872

    Thank you. I am glad it is working 🙂

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] count all notifications #25870

    You are welcome.

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] BuddyPress Group Badges #25869

    Thank you for the clarification Hans.

    I do not think we can take on this currently due to our schedule. Let us keep it as an idea and see if it gets some more interests in future.

    If it does, we can pickup it again.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: BuddyBlog formatting of blog post list #25868
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Activate Button for users with no toolbar #25867

    Hi Jacqui,
    Thank you for purchasing the plugin.

    Please put this code in your theme’s functions.php or in the wp-content/plugins/bp-custom.php

    
    
    add_filter( 'bp_account_deactivator_user_can_change_account_status', function ( $allow ) {
    	return bp_is_my_profile() || is_super_admin();
    } );
    

    That will show the activate/deactivate button on Member Profile header.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Thank you. All the best.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: FB like notification for buddypress #25854

    Thank you Tosin.
    We will fork and push an update on github this week. Will post back after that.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] BuddyPress Group Badges #25853

    Hi Hans,
    I am sorry but I am not sure I am understanding it correctly.

    I am unable to understand how a badge will be able to represent a custom action for the group. I have a few question.

    1. is the badge assigned to group and is visible on group and not on user profile?
    2. If yes, allowing group admin to create badge will make it meaningless, why would you like the option for group admin?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] count all notifications #25852

    Hi Rav,
    Thank you for the question.

    Please use the following code.

    
    
    $read_count = BP_Notifications_Notification::get_total_count( array(
    	'user_id' => bp_loggedin_user_id(),
    	'is_new'  => 0,
    ) );
    
    

    Regards
    Brajesh