BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Colleen,

    Please try the following code and check if it accomplish your requirement or not.

    
    add_action( 'pre_get_comments', function ( $comment ) {
    	$comment->query_vars['orderby'] = 'comment_date_gmt';
    	$comment->query_vars['order']   = 'DESC';
    } );
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Kiki,

    Thank you for using the plugin. As you said, You are using “Gravity Forms User Registration” plugin for registration then this issue is expected as it is not yet compatible with this plugin. “Gravity Forms User Registration” is a pro addon if you can provide access to this plugin we can check and add compatibility with this.

    You can share the plugin at ravi.sharma@cosmiccoders.com

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Link to Media Press Set Profile Cover is Wrong #40766

    Hello Lisa,

    Sorry for the inconvenience. There was an incorrect version detail of this plugin on our site. Now, I have changed to correct version. Please check…

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Buddyblog min and max words #40734

    Hello Tosin,

    Thank you for the acknowledgment. Okay, We will check the feasibility for the word’s counter with both the editors.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Compatibility of BP Confirm Actions with BP Nouveau #40713

    Hello CleanGist,

    I have tested BP Confirm Actions with Nouveau and seems all are working for me i.e. There is an alert message with the message “Are you sure” anytime I am going to delete activity, leave the group or cancel friendship request. Are you facing any kind of issue with this plugin let me know?.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Buddyblog min and max words #40712

    Hello Tosin,

    Thank you for posting and suggesting this feature. We will include this feature in future versions. For now, You can use the following code to prevent users from publishing content less than 400 words.

    
    add_filter( 'bblpro_validation_errors', function ( $errors, $data ) {
    
    	if ( $errors->has_errors() ) {
    		return $errors;
    	}
    
    	$content     = empty( $data['bbl_post_content'] ) ? '' : $data['bbl_post_content'];
    	$words_count = (int) str_word_count( $content );
    
    	if ( $words_count < 400 ) {
    		$errors->add( 'bbl_post_content', _x( 'Minimum 400 words required to publish.', 'Post form validation message', 'buddyblog-pro' ) );
    	}
    
    	return $errors;
    }, 10, 2 );
    
    

    Please let me know if this helps you or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Extended Friendship Request message confirmation on BuddyBoss #40711

    Hello Niculae,

    I have tested the extended friendship request feature with BuddyBoss Theme and it is working fine for me. In my test case, I have sent a friendship request from the single user profile and from the member’s directory cancel friendship request button successfully reflected in both the case. This plugin does not prompt a message “Request sent successfully” after successfully request sent it just replaces the button to “Cancel friendship request”.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: querying xprofile fields and then showing the total? #40672

    Hello Derek,

    Thank you for posting. As per my understanding, You are looking for a plugin that allowing you to add any individual Xprofile field across all profiles and Then show that particular field data of all users as a directory list. Please let me know if I understand correctly.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Video Compression soon? #40671

    Hello Colleen,

    Thank you for posting. You can check the BuddyBoss RoadMap for this feature and You can contact them for the releasing date for this feature because they are in a better position to assists you with this.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Rajesh,

    Sorry for the inconvenience. Please do let me know the following things:

    1. Are you using BuddyPress or BuddyBoss?
    2. Are you modify the sub nav of the existing nav or the sub nav of the new nav item?

    Regards
    Ravi