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

    Hi,
    We don’t have any plans for it currently.

    As of your issue, Please check your mysql error log, that should give you some pointer.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Hugo,
    Thank you for reporting.
    Seems like a bug. I will update you within 24 hours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Hans,
    both have same function names. That’s why you are getting fatal error.

    You can not use them together.

    You will need to adapt the code from the tutorial to the plugin.

    regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Carsten,
    Please use css to hide them. They are wrapped in spans and should be easily hidden with css.

    regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Activate Button for users with no toolbar #26042

    Hi Jacqui,
    Thank you.

    Please upgrade to 1.2.0. It fixes the issues.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Customize private group announcement #26041

    Hi Hugo,

    Thank you for the question.

    I do not see a simple way to customize it on per group basis.

    There are two ways to customize it.
    1. Using the filter ‘bp_group_status_message’ or
    2. Modifying buddypress/groups/single/home.php in your theme.

    Here is an example using the filter.

    
    
    function buddydev_custom_group_status_message( $message, $group ) {
    
    	if ( 'private' !== $group->status ) {
    		return $message;
    	}
    
    	// now handle all the cases(invited, pending etc) and modify the $message
    
    	return $message;
    }
    
    add_filter( 'bp_group_status_message', 'buddydev_custom_group_status_message', 10, 2 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Hans,
    Did you copy both part of the tutorial?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Activate Button for users with no toolbar #26036

    Thank you for the details.
    Just 1 more question.

    Did you login with a deactivated user account? If yes, didn’t their profile show an “Activate” button? It should be at the same place where deactivate is.

    If it is not showing. Please let me know. It could be a bug. I will be testing the same today too and update you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: When will Community Builder 2.0 will be ready? #26034

    Hi Torben,
    The next update will be available on 28th October. It will be the release candidate.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Activate Button for users with no toolbar #26033

    Hi Jacqui,
    Are you using the code from above?

    You are right, the user button should be in the same place. That code should make it appear.

    Can you please put the code and recheck?

    Before we push any update, we need to understand the issue.

    PS:- The deactivation can also be dome from Profile->settings screen.

    Regards
    Brajesh