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

    Hi,
    Welcome to BuddyDev forums.

    Thank you for reporting the issue. I am looking at it and will get back to you in next couple of hours.

    About the 2nd issue, At the moment, BuddyPress does not allow us to store any content with the notification. If we ant to display the content, It is doable but will need extra queries(which I am not sure if it is worth it).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: Sitewide gallery #3846

    Hi Clay,
    Yes, You can do that by using shortcode. Please take a look at the mpp-list-media shortcode

    https://buddydev.com/mediapress/topics/getting-started/shortcodes/mpp-list-media/

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488

    Hi Bjoern,
    Thank you for the details here and I am sorry that I missed your yesterday’s mail.

    I will give you the condition to put in widget logic but before that please let me experiment a little today and see if I can directly exclude it via the Visibility plugin itself.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488

    Hi George,
    Thank you for the reply.

    1. You are right about the issue with the limit. I will try to explore and see what we can do. If you have suggestions, please do let me know. It will be an issue only in case of playlists(audio/video)

    2. I agree with the order/sorting option. Will include it in next update.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: [Resolved] ajax registration doesnt redirect #3835

    Thank you Michael,
    I am glad that we could help 🙂

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: Hello #3830

    Hi Victor,
    can you please ask the theme company what meta key they are using to identify the user logged in via facebook?

    We will need to add that to this list here

    https://github.com/buddydev/bp-force-profile-photo/blob/master/bp-force-profile-photo.php#L83

    Please let me know and I will update.

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: [Resolved] ajax registration doesnt redirect #3829

    Hi Michael,
    Welcome to BuddyDev.
    Thank you for purchasing the plugin.

    Please put the following code in your bp-custom.php

    
    function buddydev_redirect_url_for_ajax_signup( $redirect, $user_id ) {
    
    	return bp_core_get_user_domain( $user_id );//redirect to profile
    }
    
    add_filter( 'bpajaxr_redirect_url', 'buddydev_redirect_url_for_ajax_signup', 10, 2 );
    
    

    Please check and let me know if the user is getting redirected to their profile page nor not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: [Resolved] MediaPress plugin not working #3827

    You are most welcome. Marking it as resolved 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: How To – Two Main Membership Areas #3823

    Hi Tina,
    Welcome to BuddyDev.

    1. Member type is best fit here. Create two member types(male/female) using BuddyPress member type.
    2. Use BuddyPress Membertype field at the signup to assign users to these groups.

    I hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25488
    Brajesh Singh on in reply to: Default componenents and logged in user. #3822

    Hi Phil,
    Please give it a try.

    
    
    function buddydev_set_default_menu () {
    
    	if ( bp_is_my_profile() ) {
    		define ( 'BP_DEFAULT_COMPONENT', 'activity' );
    	} else {
    		define ( 'BP_DEFAULT_COMPONENT', 'profile' );
    	}
    
    }
    add_action( 'bp_init', 'buddydev_set_default_menu', 0 );
    
    

    Please put it in your bp-custom.php and let me know if it works for you or not?

    Thank you
    Brajesh