Replies
- This reply has been marked as private.
- This reply has been marked as private.
- Brajesh Singh on May 2, 2022 at 10:57 am in reply to: [Resolved] BuddyBlog Pro: how to change date format? #44798
Hi Greg,
Thank you.
That makes sense. It is our meta key shortcode which is doing it.I will be getting back again after working on a way to cusotmize the date display.
Regards
Brajesh - Brajesh Singh on May 2, 2022 at 10:56 am in reply to: warning error @ your visitors | recent profile visitors #44797
Hi Tony,
Thank You for the patience.
I have tested it on BuddyPress 10.2.0 with BP Nouveau template pack and I did not get any error/notice(I have the WP_DEBUG enabled).Can you please tell me which theme and template pack are you using?
Thank you
Brajesh - Brajesh Singh on May 2, 2022 at 10:51 am in reply to: [Resolved] BuddyBlog Pro: how to change date format? #44795
Hi Greg,
Thank you for the patience. I had a look at BuddyBoss theme and the above date format is does not seem to be coming from them.Which post type are you using with BuddyBlog? Is it managed by some plugin? Any chance you have some template override for this specific post type in your child theme?
please let me know and I will assist.
Regards
Brajesh - Brajesh Singh on May 2, 2022 at 10:29 am in reply to: [Resolved] Add confirm email field in the native registration form #44794
Hi Fabien,
Thank you for the reply.I am not sure why the pointed you to us. Those topics are in some other context.
I will show you why I asked you to request help from buddyx. By default, BuddyPress does not offer a template hook to put the confirm email after the email field. If we try to put one, here is what happens.
https://i.ibb.co/3YCHxxK/Selection-489.png
It goes below the password field.
As a theme developer, they can either add it manually in their registration page or they can add a hook and provide you with the proper code.
Regards
Brajesh - This reply has been marked as private.
Hi Tosin,
Thank you. We decided to go against the member type for profile field group to avoid confusion. BuddyPress core supports visibility of field by member type and adding our own for the field group was bound to have issue in future if BuddyPress core decided the same.
That’s why we opted for role based settings.You may map a member type to role and then use this.
Regards
Brajesh- Brajesh Singh on May 2, 2022 at 10:11 am in reply to: [Resolved] Redirect BuddyPress Members from everyone except Site admin to search page #44791
Hi Giuseppe,
Thank you for the question.Please remove the above code and use this instead
// Redirect from members directory. function buddydev_hide_members_directory_for_all_except_admin() { if ( bp_is_members_directory() && ! is_super_admin() ) { $url_to_redirect_to = "http://example.com/some-page"; bp_core_redirect( $url_to_redirect_to ); } } add_action( 'bp_template_redirect', 'buddydev_hide_members_directory_for_all_except_admin' );Please make sure to change your own url.
Regards
Brajesh - This reply has been marked as private.