Replies
- Ravi on October 5, 2021 at 5:22 am in reply to: Comment Rankings or Organization under a Post – large amount of comments #40831
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 - Ravi on October 4, 2021 at 6:15 am in reply to: [Resolved] Assigning Member Types During Profile Creation #40814
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 - Ravi on September 30, 2021 at 6:03 am 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 Hello Tosin,
Thank you for the acknowledgment. Okay, We will check the feasibility for the word’s counter with both the editors.
Regards
Ravi- Ravi on September 27, 2021 at 7:54 am 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 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- Ravi on September 27, 2021 at 6:36 am 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 - Ravi on September 23, 2021 at 6:38 am 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 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- Ravi on September 23, 2021 at 6:17 am in reply to: [Resolved] BuddyPress User Profile Tabs Pro plugin – Sub Navs not displaying for all users #40670
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