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

    Hi Jaume,
    It is easy to do it with mediaPress. We have a well defined API for adding/removing menu nodes from all places. can you please post some screenshot and mark the links you want to be removed?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Jaume,
    Can you please post a screenshot? Do you mean the Gallery cover image?

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Buddyblog Featured Image #5675

    Hi all,
    Thank you for your patience.

    I am able to reproduce it. Will have an update today.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: Two suggestions of MediaPress #5674

    Hi Dandy
    I have sent you a mail with the plugin attached. Please check and let me know.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Leigh,
    no problem. I am glad It is resolved. Thank ou for marking it as resolved.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Archaic,
    Please do send me the copy of xprofile groups at [email protected]

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

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

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

    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: 25456
    Brajesh Singh on in reply to: Two suggestions of MediaPress #5659
    This reply has been marked as private.