BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] Vbulletin albums to mediapress #3576

    Hi Simon,
    That is a wonderful news. I am very happy to know that you are able to import.

    To stop the activity from getting created, please visit MediaPress->Settings->BuddyPress and disable the automatic activity creation for new media/new gallery while you are importing. It will fix the issue.

    Hope it helps.
    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Simon,
    I am sorry about this. It is not available yet. We have plans for allowing using gallery images and uploading for bbPress, WordPress comments in version 1.2 around August this year. For now, It will be easy to use wp.media to create a frame that allows uploading/inserting images.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Phil,
    Thank you for asking.
    No, It will not auto select for each group.

    You will need to assign different term_id for different groups.

    Term id is the category id. You can see it from the Dashboard->Posts->Categories screen.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Ada,
    I am sorry. I will post the code tonight.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] BP Simple Front End Post Form #3563

    Hi Leo,
    Thank you for the details.

    1. Are you using any custom code to assign categories or terms? Please post me the custom codes you are using.
    2. The two forms are different and even if they are being edited from same place, should have different setup unless some custom code is being used to assign/manipulate categories.

    There is no problem in using categories.

    I will be contacting the wpml.org about the plan. Hoping that it will help us in providing compatible plugins in future.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] BP Simple Front End Post Form #3553

    Hi Leo,
    Thank you. I will look into it and will get back to you in next couple of hours.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Thank you Andrew,
    I am happy it is resolved now.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] BP Simple Front End Post Form #3549

    Hi Leo,
    Is it happening for new posts or the old posts? This solution should only work with new posts using the custom form.

    Please let me know and I will check the code.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Andrew,
    Now, I can see the problem.

    Field 1140 is not part of your registration forms, so BuddyPress is not saving it even if we put it in the post fields. Earlier, I assumed that you had hidden this field using css and that’s why i suggested the above suggestion.

    For you, a better option will be using the following code

    
    function buddydev_update_related_field( $user_id ) {
    	
    	
    	//get the field value
    	
    	$field_data = xprofile_get_field_data(960, $user_id );
    	
    	if ( ! empty( $field_data ) ) {
    		
    		xprofile_set_field_data( 1140, $user_id, $field_data );
    	}
    	
    }
    add_action( 'bp_core_activated_user', 'buddydev_update_related_field' );
    
    

    On activation, we fetch and update the field. Please test it and let me know if it works or not?

    Thank you
    Brajesh