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
    Brajesh Singh on in reply to: Warning when displaying group page #6220

    Hi Jaume,
    I am sorry but I am not able to recreate it. Please try putting WP_DEBUG on and see what else you can find.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Profile Visibility for existing users #6219

    Thank you. I will post back here.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: bp-magic is not responsive? #6218

    Hi Nana,
    I am truly sorry. It has been more that 2 week since I promised but it got delayed a lot.

    For now, Please check the details on our home page.

    https://buddydev.com

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] Magic demo link #6216

    Hi George,
    I am sorry but did you see “No input file specified.” message?

    The BP Magic demo has been down since we moved the subdomain demos to another VPS. The message is standard nginx message when the web server is unable to find path.

    We will have a new demo back in a week or two.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Profile Visibility for existing users #6215

    Hi Matthew,
    Thank you for posting. The above code works. Also, we will be adding the option to reset privacy settings for all members this weekend.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Amazon s3 integration #6209

    Hi Richard,
    Please use any of the existing plugin for offloading media. They should work out of the box. All MediaPress media is just attachment.

    Hope that helps.
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Ken,
    Sure we can. here is the updated code from the above example.

    
    
    function buddyblog_limit_terms( $settings ) {
    
    	if ( ! isset( $settings['tax'] ) ) {
    		return $settings;
    	}
    
    	$tax = $settings['tax']; //it is multi dimensional array
    
    	$tax_terms = array(
    		'category'=> array(1, 53 ), // tax_name=> term_ids
    		'post_tag' => array( 7, 9 ), //add as you please, //you can add other taxonomy too
    	);
    
    	foreach ( $tax_terms as $taxonomy => $terms ) {
    
    		if ( ! isset( $tax[ $taxonomy ] ) ) {
    			$tax[ $taxonomy ] = array();
    		}
    
    		$tax[ $taxonomy ]['include'] = $terms;
    	}
    
    	//update settings
    	$settings['tax'] = $tax;
    
    	return $settings;
    
    }
    add_filter( 'buddyblog_post_form_settings', 'buddyblog_limit_terms' );
    
    

    It is simplified to use multiple taxonomies.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] BP Member Multiple Types #6198

    Hi Marc,
    My apologies. I just missed it. I see you are looking for multi fields. Please give me a day and I will update the plugin.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: [Resolved] BP Member Multiple Types #6196

    Hi Marc,
    Please put this line in your bp-custom.php

    
    add_filter( 'bd_xprofile_field_type_membertype_as_radio', '__return_true');
    

    We have it mentioned on the page, It seems you skipped it somehow.

    In future, we will allow it from the xprofile field create/edit page too.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Marc,
    I am sorry but I can not understand the context. Which plugin/code are you using for the State/City combo.

    I will advise to ask the author of that code.

    Thank you
    Brajesh