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: 25392
    Brajesh Singh on in reply to: [Resolved] homepage activity #43165

    Thank you Léonard.
    Have a nice day to you too.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Want to publish PODCAST through Buddyblog Pro Form #43164

    Hi Sachin,
    I had a look.

    We won’t be able to support the podcast plugins out of the box. Yes, It is doable but that is beyond what we can support out of the box for this plugin.

    Please feel free to use our customization services and we can assist you with this.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392

    Thank you.
    That’s not doable currently. BuddyPress does not allow link in the notices.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Bug in Extended Friendship Request #43153

    Hi SX,
    I am very sorry we did not reply earlier. We had a miscommunication on the assignment on this task.

    Your assumption of bug is incorrect.
    I believe you are referring to this commit.

    https://github.com/sbrajesh/bp-extended-friendship-request/commit/150960aa60e57c5a71e34da5bc559126095736cd

    Please check their purpose. There is no inversion of logic. We can not guarantee that it works with current version of BuddyBoss as BuddyBoss keeps changing things.

    Please correct me where is the “VERY NASTY BUGS” that you reported?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: [Resolved] How to use bp hooks? #43152

    Hi,
    That’s not the right way to do it as the $fieldname is not available with that hook.

    here is the code you may use

    
    add_action( 'bp_signup_validate', function () {
    
    	$bp = buddypress();
    	if ( ! $bp->signup->errors ) {
    		return;
    	}
    
    	if ( isset( $bp->signup->errors['field_1'] ) ) {
    		$bp->signup->errors['field_1'] = sprintf(
    			'<div class="bp-messages bp-feedback error">
    								<p>%s</p>
    							</div>',
    			'You have to enter name.' );
    
    	}
    } );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Follow / Followers Plugin update #43151

    Hi Nitin,
    This plugin was dropped in favour of relationship API for BuddyPress. I do have that plugin partially available. I will most probably do a release sometimes in future.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Want to publish PODCAST through Buddyblog Pro Form #43150

    Hi Sachin,
    Thank you.
    Our team will check the player next week and get back to you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Buddypress Auto-Follow from other registeration page #43149
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: [Resolved] Auto Join not working for new users #43148

    Hi Raymond,
    Thank you.

    I see that your users are registering via WooCommerce. In this case, there are only 2 cases where the action will be applied.

    1. When a user registers
    2. When a user updates their profile

    In the first case(when user registers via WooCommerce), the xprofile data is not available for the user(I still need to look into WooBuddy to verify when they add it). So, only global lists(without any condition will match on this action).

    In case of profile update, xprofile data is available, so it will match any list containing conditions. Please try updating a user’s profile.

    For the 1st case(Registration), Please allow us to check the WooBuddy plugin next week(Monday/Tuesday) and we will have a better idea if we can change our hook’s priority to support it or not.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: [Resolved] homepage activity #43147

    Hi Léonard,
    I am sorry for the delayed reply.

    Your Page header background is set to white “#FFF” and that is making it invisible.

    Please visit Dashboard->Appearance->Customize->Styling-> Page Header

    You will find the background option there(color). Please add transparency(there is a color picker that allows it). The cover image will be visible then.

    Regards
    Brajesh