Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Profile Button Order #24098

    You are welcome 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Private Replies? #24097

    Hi Mike,
    Yes, It is possible to post private replies.

    you may use this plugin

    https://wordpress.org/plugins/bbpress-private-replies/
    It has not been updated recently but it works.

    In my opinion, forum search is better as others may be able to search for their issues and the support load can be minimized.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Chris,
    Thank you.

    I am glad it worked.

    Let us continue the discussion about profile field and search here

    https://buddydev.com/support/forums/topic/member-types-pro-conditional-fields-not-compatible-with-bp-search-profile/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Profile Button Order #24094

    Hi Axel,
    Please put this in your bp-custom.php or your theme’s functions.php

    
    
    /**
     * Move friendship button to the end.
     */
    add_action( 'bp_nouveau_return_members_buttons', function ( &$buttons ) {
    
    	$button = isset( $buttons['member_friendship'] ) ? $buttons['member_friendship'] : '';
    	if ( empty( $button ) ) {
    		return $buttons;
    	}
    
    	unset( $buttons['member_friendship'] );
    	$buttons['member_friendship'] = $button;
    
    } );
    

    That should do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    No, The plugin does not support multiple grous currently.

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Multi-Network/Xprofile Conflicts #24064

    Hi Zach,

    Welcome to BuddyDev forums.

    The issue is not caused by either of the plugins above.

    BuddyPress has a bug which manifests when multiblog/multi network mode is enabled(It was when I had checked last time). You may disable the xprofile custom field types and the error will appear.

    I will need to setup multi network and check for the error/solution again(I vaguely remember changing 1 line in xprofile admin).

    I will update you on Monday.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    The plugin does not support icon out of the box.
    The reason is different BuddyPress themes use different approach for tab icons. Some use css(::before selector) some inject the markup.

    Since BuddyPress does not support icon nav, adding this will make it an issue for the theme’s support.

    That’s why we don’t have it.

    Which theme are you using? I might have simple suggestions to the icon working.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] BuddyCommerce with subscriptions #24061

    Hi,
    Welcome to BuddyDev.

    I am sorry, I am unable to re-produce your issue.

    here is what I see

    https://i.imgur.com/ezCiuWH.png

    https://i.imgur.com/EWTVwzi.png

    Is this not appearing for you?

    PS:- Did you add slug for the subscriptions tab?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Chris,
    Thank you.

    I am sorry, I thought it was about the use of legacy BuddyPress template pack.

    2. Redirect to profile on Login:- I have setup it. To see it, Please visit
    Dashboard->settings->BP Ajax registration
    Click on Login Tab.

    I have set
    “Action after successful login?” -> Redirect to Another page
    “After login, redirect to?” – [user.url]

    [user.url] and a few other predefined placeholders allow you to link to dynamic pages.

    1. You can move the fields from First Field group to another and they will go away from registration.
    Steps:-
    Please visit Dashboard->Users->profile Fields.
    At the top you will note “Base” which is primary profile field group(currently holding all fields).

    Tip:- Field groups allow you to organize your fields into multiple section.

    At the top, you will find “Add New Field Groups” Use that to create another field group.

    Once you are done with the Field Group creation, You can drag and drop the fields from first group to second. Please move the fields there.

    The fields will be available on edit profile but not on registration.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Colin,
    Welcome to BuddyDev.

    Can you please confirm if you see the “Profile Privacy” in adminbar account menu(under settings) or under your Profile->Settings tab.

    If not, then the plugin might not be enabled for users. Please visit plugin settings in dashboard and make sure to enable it.

    If you see the above links and on clicking page is not opened or content is not shown, the possible reason will be plugins.php template may be missing the bp_template_content hook.

    If possible, Please share the plugins.php code( you can use backtick(`) ) to share the code in forum.

    Regards
    Brajesh