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: 25384
    Brajesh Singh on in reply to: [Resolved] Privacy issue in comments #11319

    @ravisharma, please look into this topic and assist as needed.

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Error when activating Buddyblog #11318

    Hi Aldo,
    I am sorry, I haven’t been able to devote time to this due to festive holidays last week and have been clearing backlogs till today. Hoping to restart on it tomorrow.

    Thank you
    brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Feature image upload #11317

    Please check for javascript error. It is not the expected behaviour. On selecting the image, It should attach and close the popup.

    Can you please provide a demo account.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Schedule date in Simple Frontend Post? #11316

    Hi jcsmonogram,
    Thank you for posting.
    yes, It is possible to do it but will need custom code. We will need to add a meta field for accepting post date(schedule date) and set the status to draft.

    If it is not too critical, please wait for a few days, we are working on something that will allow it out of the box for BuddyBlog(I am assuming you are using it with BuddyBlog).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Gert,
    It is feasible and we have done it in past.
    For now, I will suggest waiting for 4-7 days as we may have next version that allows it out of the box. We are also including the login/forget password support too.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Remove buddyblog "Posts" link in menu #11314

    Hi Janelle,
    Are you referring to the adminbar or the profile menu? Can you please put a screenshot and link here?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Mohamed,
    here is the code that we use(similar to this)

    
    function buddydev_update_activity_args_on_publish( $args ) {
    
    	if ( $args['component'] !== 'blogs' || $args['type'] !== 'new_blog_post' ) {
    		// change type to yours.
    		return $args;
    	}
    	// It must be post publish. let us check for the post meta.
    	// check if this was saved via BCG.
    	$post_id  = $args['secondary_item_id'];
    	$group_id = get_post_meta( $post_id, '_bcg_group_id', true );
    
    	if ( ! $group_id ) {
    		return;
    	}
    
    	$args['component'] = 'groups';
    	$args['item_id']   = absint( $group_id );
    
    	return $args;
    }
    
    add_action( 'bp_after_activity_add_parse_args', 'buddydev_update_activity_args_on_publish' );
    
    

    You can change this

    
    
    $args['type'] !== 'new_blog_post'
    

    and replace ‘new_blog_post’ with your activity type.

    And it will work. You can put the above code in your bp-custom.php

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: BP MagicVersion: 1.3.0 Feedback #11310

    Hi Thomas,
    My apologies for the delayed reply.

    We will need a few days before we can assist you on this. Things are a bit delayed at the moment since we have just resumed the work after a week of holidays and currently clearing the backlog.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Posting date is incorrect #11309

    Hi Thomas,
    Thank you.
    We will update it in next 2-3 days. Things are a bit delayed at the moment since we have just resumed the work after a week of holidays.

    Will update before the weekend and message you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: "BuddyPress Deactivate Account" email notification #11307

    Hi Margarita,
    For now,
    Please open “WCDFE.php” in the wp-change-default-email plugin

    and change line 64 from

    
    add_action( 'init', array(&$this, 'init' ));
    
    

    to

    
    
    $this->init();
    

    That should do it.

    Regards
    Brajesh