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: 25486
    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: 25486
    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Nifty,
    Thank you for the patience.

    The JWT plugin uses determine_current_user hook to mark a user as logged and the plugin does not give us any option to check for external conditions. Our only solution is to hook to the same filter at a lower priority. I am not very comfortable with this idea as a general solution.

    Still, you can put this code and it will work.

    
    /**
     * Disallow current to be accepted as logged if they are suspended.
     */
    add_filter( 'determine_current_user', function ( $user_id ) {
    
    	if ( ! $user_id || ! function_exists( 'bpmts_is_user_suspended' ) ) {
    		return $user_id;
    	}
    
    	if ( bpmts_is_user_suspended( $user_id ) ) {
    		return false;
    	}
    
    	return $user_id;
    }, 100 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Niculae,
    Thank you for confirming.

    Regards
    Brajesh

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

    Hi Sachin,
    can you confirm that the player uses post type for storing the media and data etc?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Tarak,

    Nickname and usernames are different. I am sorry, this plugin does not work for nickname.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: PayPal Issue #43126

    Hi Becca,
    Thank you for purchasing from us.
    I am sorry for the experience.

    I have mailed you the links to download your product.

    Please let me know if you are able to access them now or not?

    Regards
    Brajesh

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

    Hi Sachin,
    Thank you for your interest in the plugin.

    The plugin allows you to create posts. We don’t have any specific option currently for Podcast.

    If you are able to use a 3rd party plugin for podcasting with WordPress, Please let me know, we can look at it and let you know if it will allow adding from the front end or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Please upgrade. It is already available.

    Let me know if it works as expected or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Niculae,
    thank you.
    You are right. There was a bug. It was not enforcing the taxonomy even if it was required. It is fixed in 1.2.4.

    Regards
    Brajesh