BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24722
    Brajesh Singh on in reply to: Ajax Registration with Social Login #741

    Thank you Milo. I am looking forward to your feedback.

  • Keymaster
    (BuddyDev Team)
    Posts: 24722
    Brajesh Singh on in reply to: Ajax Registration with Social Login #739
  • Keymaster
    (BuddyDev Team)
    Posts: 24722
    Brajesh Singh on in reply to: Ajax Registration with Social Login #738

    Hi Milo,
    I have updated the plugin.

    1. it fixes the type
    2. Changes the text domain to ‘bp-ajax-registration’. The new localized files should be named ‘bp-ajax-registration-YourLocale.mo’ in the languages directory. will load from WordPress languages directory too.

    3. Please put this code in your bp-custom.php

    
    
    add_filter( 'bpajaxr_redirect_url', 'buddydev_redirect_to_profile_on_ajax_registration', 10, 2 );
    
    function buddydev_redirect_to_profile_on_ajax_registration( $url = '', $user_id = 0 ) {
    	
    	
    	if( ! $user_id ) {
    		return $url ;
    	}
    	
    	$url = bp_core_get_user_domain( $user_id );
    	return $url;
    }
    
    

    After the upgrade, It will redirect the users to their profile.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 24722
    Brajesh Singh on in reply to: Browse media? #734

    Hi Achim,
    Please do call me that 🙂

    The Lightbox is comming for everyplaces soon( obviously with settings to turn on/off)

    About single media, Please visit MediaPress->settings in dashboard and go to BuddyPress Tab. There you will see options to turn off the automatic publishing to activity. As soon as you do that, in future, you can publish media in bulk.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 24722

    Hi George,
    Please give me till Monday. will check and update if required.

  • Keymaster
    (BuddyDev Team)
    Posts: 24722

    Hi Kicah,
    Sorry for the delayed reply.

    1. When you comment on a gallery media, the media is listed in activity. If you click on that the commented media does not open in lightbox at the moment.

    2. Most probably, your theme is also using the same lightbox, so removing it has no effect. try disabling the lightbox completely. Also, I checked with the most recent version and the keyboard navigation worked fine for me (on Linux ) .

  • Keymaster
    (BuddyDev Team)
    Posts: 24722
    Brajesh Singh on in reply to: Browse media? #728

    Hi A,
    I am sorry due to the release of MediaPress I was not able to focus here.

    Can you please upgrade and check if it is resolved.

  • Keymaster
    (BuddyDev Team)
    Posts: 24722

    Hi Milo,
    Thank you for sharing the ideas.

    1. We have got the click counter as addon( releasing next week, free )
    2. Related Images/Videos( Not sure how do we do it unless we are allowing tags, which will be in phase -2)
    3. My priority too. I am interested in proviing the resize functionality. if possible, please open a topic and let us discuss how should it work( on the fly, specifying sizes etc)

    4. Already there. Documents coming soon.

    5. Sure thing. Coming soon as addon.

  • Keymaster
    (BuddyDev Team)
    Posts: 24722

    Hi Deepak, Closing as resolved since we got this fixed as per my last reply 3 days ago. If you have any issue in future, please feel free to open new topic.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24722
    Brajesh Singh on in reply to: Ajax Registration with Social Login #724

    HI Milo,
    Sorry for keeping you waiting. I have looked into it and there is a hook available in current version to do that. I will need an hour to test if that works( since I saw that User ID is not passed), If not, will update ajax registration plugin.