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

    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.

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Setting Issue or Bug? Can't Delete Media in MediaPress #5641

    Hi Rick,
    If feasible, Please provide me a temporary account on the site. I will like to take a look and assist you better.

    thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Thank you. I am glad you sorted it out.

    Another option to hide error was to use
    show_error = 0 in the shortcode tag.

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Two suggestions of MediaPress #5635
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Jaume,
    I had checked it on my latest WordPtress/BuddyPress install before commenting. Please see the screeen here. I just checked again.

    http://imgur.com/a/lWHlj

    I am glad it is workable for you at the moment but I still suggest checking for plugin conflict.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Error 404 for non logged in users #5631

    Hi Tiziano,
    Thank you.
    That makes sense now.

    I am looking into it. seems like a recent change in BuddyPress is responsible for this behavior.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi George,
    I don not use the zip files from github and I am not sure if renaming will do that or not. So, I recommended that to be on the safe side. If the uploaded file do not extract as mediapress, you may end up with two copies.

    Also, If it is not working for you, Please use ftp instead or will have to wait till the next release.

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Congratulations Simon.

    I will add it to our upcoming MediaPress resources pages.

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Archaic,
    I am sorry, I had closed that topic per your last message.

    I can understand it happening. We are forcing the plugin to load on one page, It was not created for that. Here is a temporary solution. I will have better way to handle it in future.

    For now, Please open bp-ajax-register.php and modify this

    
    function bpajaxr_include_form() {
    
    	if ( is_user_logged_in() || ! bp_get_signup_allowed() ) {
    		return;
    	}
    
    	$is_enabled = get_option( 'bp_ajax_use_registration_form', 1 );
    
    	if ( $is_enabled ) {
    		return;
    	}
    
    	$helper = BP_Ajax_Registration_Handler::get_instance();
    
    	BP_Ajax_Registration_Handler::show_form();
    }
    
    

    to this

    
    function bpajaxr_include_form() {
    
    	if ( is_user_logged_in() || ! bp_get_signup_allowed() ||  ! is_page( 'sign-up' ) ) {
    		return;
    	}
    
    	$is_enabled = get_option( 'bp_ajax_use_registration_form', 1 );
    
    	if ( $is_enabled ) {
    		return;
    	}
    
    	$helper = BP_Ajax_Registration_Handler::get_instance();
    
    	BP_Ajax_Registration_Handler::show_form();
    }
    
    

    That will do it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    1. Please delete older version
    2. Do not use the github download directly. You will have problem in future upgrades.

    3. Extract Zip file, It should be extracted to mediapress-master perhaps.
    4. rename it to mediapress and zip it. Then upload.

    Or the easiest way is to use FTP.