Replies
- Ravi on February 1, 2023 at 4:39 pm in reply to: [Resolved] Position user badge behind active time #48242
Hello Daniel,
Please try the following CSS rules and let me know if it helps
#item-header-content .bp-user-badges-badge-list { display: inline; } #item-header-content .bp-user-badges-badge-list img { margin-top:0 }
Regards
Ravi - Ravi on February 1, 2023 at 4:09 pm in reply to: [Resolved] How to display custom post type in authors archive? #48241
Hello Fran,
Thank you for the acknowledgment. I am glad that you solve the issue on your own.
Regards
Ravi Hello,
We have released the new version of the plugin i.e. ‘1.7.0’. Please upgrade your plugin and give it a try.
Plugin url: https://buddydev.com/plugins/recent-visitors-for-buddypress-profile/
Regards
Ravi- Ravi on January 17, 2023 at 11:27 am in reply to: [Resolved] Notify Friends When a User Posts #48040
Hello,
Thank you for posting. Does you have a look on Group Activities Notifier plugin. If not, Please have a look here:
https://buddydev.com/plugins/bp-group-activities-notifier/
Please let me know if it full-fills your requirements.
Regards
Ravi - Ravi on January 10, 2023 at 6:10 pm in reply to: [Resolved] Issues with settings in BuddyPress Private Message Rate Limiter #47928
Hello Nifty,
Yes you can delete the option it will not cause any problem. But, If any issue comes please update the settings and then try.
Please let me know if if everything works fine or not.
Regards
Ravi - Ravi on January 9, 2023 at 5:20 pm in reply to: BuddyBlog Pro – override Submit Post for Review #47908
Hello Nik,
Please try the following code and let me know if it helps or not
add_filter( 'bblpro_form_post_status', function ( $post_status, $form_id ) { if ( is_super_admin() || ! is_user_logged_in() ) { return $post_status; } $form_type = bblpro_get_form_type( $form_id, 'members' ); if ( 'members' == $form_type ) { // Replace with your roles. $skipped_roles = array( 'editor' ); if ( 'pending' == $post_status && bblpro_user_has_role_in( get_current_user_id(), $skipped_roles ) ) { $post_status = 'publish'; } } return $post_status; }, 10, 2 );
Regards
Ravi- This reply was modified 2 years ago by Ravi.
- Ravi on January 9, 2023 at 4:12 pm in reply to: [Resolved] Issues with settings in BuddyPress Private Message Rate Limiter #47906
Hello Nifty,
I have updated the plugin “BP Private Message Rate Limiter”. Please upgrade to the latest version and give it a try.
Regards
Ravi- This reply was modified 2 years ago by Ravi.
- Ravi on January 9, 2023 at 6:53 am in reply to: [Resolved] Issues with settings in BuddyPress Private Message Rate Limiter #47901
Hello Nifty,
Thank you for the acknowledgement. I have tested the plugin and it is working fine please give it an another try with different settings. Also, BuddyPress does not show private message button on members directory it is your theme that is adding this button on directory so please contact theme for the issue as they can help you in a better way with this issue.
Regards
Ravi - Ravi on January 9, 2023 at 6:22 am in reply to: [Resolved] Users are able to message blocked and suspended users if you have the direct URL #47900
Hello Nifty,
Thank you for the acknowledgement. I am glad that it worked.
Regards
Ravi - Ravi on January 9, 2023 at 6:20 am in reply to: [Resolved] Hide Certain Contents(Pages) From Logged In/Out Users #47899
Hello Emmanuel,
Thank you for the acknowledgment. Please update the code with:
add_action( 'bp_template_redirect', function () { // assuming that you are trying to protect 'pages' not other content. if ( ! is_page() ) { return; } if ( is_user_logged_in() ) { buddydev_redirect_members_from_restricted_pages(); } else { if ( bp_is_user_activity() ) { $redirect_url = trailingslashit( bp_core_get_user_domain( bp_displayed_user_id() ) ) . bp_get_activity_slug(); bp_core_redirect( wp_login_url( $redirect_url ) ); } buddydev_redirect_visitors_from_restricted_pages(); } } );
Regards
Ravi