BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: mediapress video screenshot #44810
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: mediapress video screenshot #44808
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: Profile tab settings #44793
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: [Resolved] Suggestion #44792

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: mediapress video screenshot #44790
    This reply has been marked as private.