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: 25337

    Thank you. Will do.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: moving/deleting/renaming tabs and subnavs #24540
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: How to hide group settings tab? #24539

    Hi Matthew,
    Welcome to BuddyDev forums.

    The tabs creators pro allows you to add any tab/sub tab. It allows removing top level tabs from group but not from group creation.

    You can use the following code to remove th settings tab from group creation.

    
    /**
     * Remove group settings from group creation.
     */
    add_filter( 'groups_create_group_steps', function ( $steps ) {
    	unset( $steps['group-settings'] );
    
    	return $steps;
    } );
    
    

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: moving/deleting/renaming tabs and subnavs #24535

    Hi Gijs,
    Thank you for the purchase.

    1. Have issued refund for the Group Tabs Pro. It is included with your purchase of Profile Tabs pro too.

    2. Yes, it is possible to move settings by copying code. Please let me know which sub tab you want to move). It will be easier to move from settings to profile.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: BuddyPress Custom Xprofile Fields About #24528

    Hi,
    Please add this to your function.php

    
    
    add_action( 'bp_directory_members_item', function (){
    
    	bp_member_profile_data( 'field=About' );
    
    });
    

    You can change ‘About’ to any field name.

    Also, you can show multiple field data by adding more lines like

    
    
    add_action( 'bp_directory_members_item', function (){
    
    	bp_member_profile_data( 'field=About' );
            bp_member_profile_data( 'field=Field 2' );
            bp_member_profile_data( 'field=Field 3' );
    
    });
    

    and so on.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: moving/deleting/renaming tabs and subnavs #24527

    Hi Gijs,
    Welcome to BuddyDev.

    1. For tab renaming, you can use translate tool like poedit or any of the translation plugin.

    2. Moving sub tabs to another tabs:- There is no ready to use general purpose code or plugin available for that. It is doable but depends on how you want to achieve.

    For example, it is easy if you want to add a sub tab t1 to an existing tab t2 and make it link to sub tab 3 from a tab 4, yes it is dosable. The problem is once the user clicks t1, they will be sent to the tab t3/t4 and not on tab t2.

    If you want to make sure they stay under tab t2, the specific sub tab will need to be handled by the custom code.

    We do have a plugin that allows moving tabs(re-ordering), moving sub tabs(re-ordering inside their parent). Deleting/making tab available based on roles and changing the tab label and visibility.

    It does not allow moving a sub tab from one parent to another parent though(The reason is in BuddyPress, screen handlers are hardcoded with tab/sub tab slug mostly).

    https://buddydev.com/plugins/buddypress-user-profile-tabs-creator-pro/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: xProfile field on Registration Page #24526

    Hi Mike,
    Thank you for the question.

    BuddyPress needs the display name.

    There is a solution to this though.

    Here is a tutorial that will help you with it.

    https://buddydev.com/buddypress-better-registration-part-1-remove-full-name-confirm-password-from-buddypress-registration/

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337

    Thank you Richard.

  • Keymaster
    (BuddyDev Team)
    Posts: 25337

    Hi Eric,
    I am sorry, I had replied as a private as your earlier reply was privae.

    Now I can see that you are not able to view my reply as only original topic creator can see private replies.

    1. Please open a new topic from here

    https://buddydev.com/support/forums/

    and for the limit members per group, Please let me know which template pack/theme are you using. Since we plan to maintain it, we will push a fix soon.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337

    Hi Noah,
    We support assigning member types based on WooCommerce Memberships or Subscriptions. We do not support member type selection on WooCommerce registration page.

    We do not need 3rd party plugin to add support for WooCommerce registration. Our team will look into it and see if we can add the support via custom code in next 1-2 week.

    Thank you
    Brajesh