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

    HI Dime,

    1. For Icon, Please contact your theme authors. Icons are provided/set by the theme authors and they will assist you.

    2. Please copy plugins/buddyblog/template/buddyblog/edit.php to yourtheme/buddyblog/edit.php and add this line

    
    
    <?php if( ! current_user_can( buddyblog_get_option( 'post_cap' ) ) :?>
    message... here..
    
    <?php endif;?>
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Location of buddypress main nav – sub nav #14648

    Hi Julia,
    I am not sure which main nav you are referring to? Is it about the User profile main nav? Do you need to know the php file?

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: [Resolved] Required profile feild not working #14645

    Marking it as resolved due to lack of replies for last 1.5 years.

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Brendan,
    When registering the form you can register the callback to be called after post is saved

    
    
    'update_callback'       => 'buddydev_form_saved_callback',
    
    

    Now, In the callback, you can redirect as you please.
    Here is how the function should look like

    
    
    /**
     * This gets called when a post is saved/updated in the database
     * after create/edit action handled by BP simple front end post plugin
     *
     * @param int                      $post_id post id.
     * @param boolean                  $is_new is new post.
     * @param BPSimpleBlogPostEditForm $form_object form.
     */
    function buddydev_form_saved_callback( $post_id, $is_new, $form_object ) {
    // do a redirect here.
    }
    
    

    You get the post id, whether is was a new post or an edit post and the form object.

    I hope you can take from there.

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Sujee,
    are you using a normal post for this? or do you want to use a custom post type? I will be happy to share the complete code for achieving it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Sujee,
    You are correct in your assumptions.

    About 3rd:- yes, you are right about that. We can use WP_Query to fetch for the first time and cache the post id in transient for later use. That way, It can be flexible as well as efficient.

    Since we are setting the user at author of the post, we can fetch it based on the post type + author combination.

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Brendan,
    sorry about that.

    Here is how it works:-

    WordPress needs the user to have ‘upload_files’ and ‘edit_post’ capability to allow user upload and then attach the uploaded media to post.

    Since this is a common thing, The plugin does it if you are using the form on any of the BuddyPress section.

    If you are not using it from BuddyPress section, we need to manually enable it.

    For now, I will suggest putting it in your theme’s functions.php as we need the capability to be updated for ajax upload too.

    Please give a try and let me know what happens.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Herve,
    Here is the code for three

    
    /**
     * Exclude BuddyPress activity types form listing.
     *
     * @param array $args activity args.
     *
     * @return array
     */
    function buddydev_exclude_activity_types( $args ) {
    
        // do not modify if the scope is laready set.
    	if ( ! empty( $args['scope'] ) ) {
    		return $args;
    	}
        // exclude the activity types if scope is not set.
    	$args['filter_query'] = array(
    		array(
    			'column'  => 'type',
    			'value'   => array( 'friendship_created', 'new_member', 'updated_profile' ),
    			'compare' => 'NOT IN'
    		)
    	);
    
    	return $args;
    }
    
    add_filter( 'bp_after_has_activities_parse_args', 'buddydev_exclude_activity_types' );
    

    Hope this helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Sujee,
    You are welcome.

    If you want, I can assist with the code. It is pretty easy to accomplish

    1. Register private post type
    2. In the author box select the assigned counsellor as author
    3. Add the actual content for that counsellor.
    4. Create a simple shortcode to fetch the post for that user and that’s all.

    I believe It may be helpful for others too using the BuddyPress Profile Tabs Pro plugin.

    Best regards
    Brajesh