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: 25302
    Brajesh Singh on in reply to: how to add reach text field in a user profile #46826

    Hi,
    1. I am not sure what you mean by that. We are not tinymce experts and we base our views on tinymce docs as well as the WordPress code.

    2. A minimum commitment of 3 hours.

    Also, I do not think that you need it for signature. You can simply add the help docs that comes after the field about the limitations. I don’t see much difference by showing that they have crossed the allowed character/word count.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25302
    Brajesh Singh on in reply to: [Resolved] BuddyBlog Pro – Custom field types #46825

    Hi Nik,

    Here is how you register a field type

    
    
    add_filter( 'bblpro_registered_field_type_classes', function( $types ) {
    
    	$types['datetime'] = YourFieldTypeClassName;// please change it. 
    	return $types;
    });
    
    

    Also, The only issue with group which is remaining is Activity action string in BuddyBoss. I could not find time in last 3 days due to other release. I am hoping to work on it today/tomorrow and push a release.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25302

    Hi Didier,
    We do not do much for hiding posts. If you plan to have privacy, Please use private post type.

    The default WordPress ‘Post’ post type is public and any privacy we apply has not much value.

    Regards
    Brajesh

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

    Hi Mike,
    Thank you for the question.

    What you see in members list as the latest activity is not fetched from activity table.

    When a user posts an activity update, After adding it to activity table, BuddyPress keeps a copy of the content in user meta ‘bp_latest_update’.

    When an activity update is deleted, this meta gets deleted and BuddyPress does not try to update it by fetching from activity table.

    This will get populated again when a new update is posted by the user.

    I hope it helps you understad it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25302

    Please add this too

    
    .comment-form .required-field-message{
    	display: none;
    }
    

    That should take care. Please let me know of that works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25302

    Hi Fain,
    Thank you.
    I am glad that you liked it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25302

    Hi Ethan,
    Please add the following code

    
    add_filter( 'usin_user_db_data', function ( $user ) {
    
    	$field_id   = '25';
    	$field_name = "bxp_$field_id";
    
    	if ( isset( $user->{$field_name} ) ) {
    		$user->{$field_name} = xprofile_get_field_data( $field_id, $user->ID );
    	}
    
    	return $user;
    } );
    

    Please make sure to change field id.

    Let me know if it works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25302

    Hi Michael,
    Thank you.

    You can hide all the asterisk from the comment form(in twentysixteen theme) by adding the following code to Dashboard->Appearance->Customize->Additional CSS.

    
    .comment-form .required{
    	display:none;
    }
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25302

    Hi Dianne,
    Thank you the topic.

    This is very much specific to BuddyBoss and I believe the BuddyBoss team can have this easily. It does not make sense doing via plugin.

    Please contact them and open this as an enhancement request.

    Regards
    Brajesh