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

    Hi Archaic,
    Please do send me the copy of xprofile groups at brajesh@buddydev.com

    About the changes, I will suggest using the latest version and try fiddling with ‘is_page( ‘uploader’ )’ condition instead to see if the form is appearing on all pages on not.

    Yesterday’s change was aimed at unifying the conditions instead of using multiple filters for 3 different kind of loading and is future proof.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi George,
    Do you mean the BuddyDev site? Also, Is it the top menu links? It is working correctly. The themes are outdated and we are going to remove all theme by next week and replace with the upcoming themes.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Leigh,
    Please post your complete bp-custom.php on pastebin. It has nothing to do with my code. There are two possibilities:-

    1. There is at least once space before the beginning php or after the ending php tag

    2.Or the code trying to create session is running too late.

    Thank You
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Archaic,
    No problem. I have updated the plugin. The goal of this update was to streamline the loading of form/js/css etc.

    Please Upgrade and then, Please make sure to do the following:-

    Please Visit Dashboard->settings->BuddyPress->Options
    and un check the box that says

    
    Enable Ajax Loading of Form 
    
    

    under the BuddyPress Ajax registration setting

    Once you are done with that, you can put the following code

    
        setTimeout( function () {
            show_reg_form();
        }, 1000 );
    

    In the file wp-content/plugins/bp-ajax-registration/_inc/bp-ajax-register.js
    Just after the line

    
      var magnificPopup = jQuery.magnificPopup.instance;
    

    The above is copied from https://buddydev.com/support/forums/topic/buddypress-ajax-registration-popup-on-pageload/page/2/#post-5588

    And the last thing, remove any php code you are using from my previous post. They are not needed any more. Just add the following code in your bp-custom.php

    
    
    function bpajaxr_only_enable_on_this_page( $load = false ) {
    
    	if (  is_page( 'uploader' ) && ! is_user_logged_in() ) {
    		return true;
    	}
    
    	return false;
    
    }
    
    add_filter( 'bp_ajaxr_is_form_enabled', 'bpajaxr_only_enable_on_this_page');
    
    

    That will do it.

    Since the BuddyPress currently only supports one Profile Group on registration(It will change in future), I haven’t done much on that front. Hoping to push another release in next week or so with the login/password reset feature.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Two suggestions of MediaPress #5659
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25273
  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Gallery Meta title and descriptions #5657

    Hi Simon,
    Yoast has issues with BuddyPress and most probably that is causing the issue here. Please do let me know if it is happening on non Yoast installation too.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Archaic,
    I am sorry for the trouble you had to go through. Please let me update the plugin instead and remove all these dependencies from the last topic and this and I am going to make it simple enough to load on any single page. Please let me do it for couple of hours.

    That will be better as it will avoid any issue for you in future upgrades.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Mediapress – a couple of feature requests #5643

    Hi George,
    Thank you

    1. It will come sometime in future.

    2. It is already part of MediaPress. Most probably you have playlist view enabled for the video/audio that’s why you don’t see it. It should be visible on photo galleries(always) and on audio/video gallery when grid view is used.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    The plugin is very lightweight and I would have recommended it wholeheartedly if it allowed using it by 3rd party. For now, Please avoid it. May be I will try to send them a pull request on github in future when I have some free time.