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: 25472
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Dianne,
    Thank you for using the plugin.

    1. While creating a new tab, Please mark it as existing and make sure to use correct slug(same slug as existing tab).
    Once you do that, change it availability/visibility or scope. All of that can be used to limit the tab availability.

    Please see this post for details.
    https://buddydev.com/docs/buddypress-group-tabs-creator-pro/modifying-label-repositioning-existing-group-tab/

    Here is a screenshot showing how to locate the slug.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] homepage activity #42702

    Hi Léonard,
    I am sorry about the delayed reply.

    1. Do you mean that instead of making the header always show at the top, you want it to become invisible when scrolled?

    2. By Forum, do you mean BuddyPress Group forum or the normal bbPress forum which is independent of the group?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Peter,
    Thank you.

    Can you please share screenshots of your lists(with the conditions applied to them). That will help me understand it better.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Tosin,
    BuddyPress 10 is around the corner(should come today or anytime very soon). I will be requesting for this feature after that.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Mark,
    Thank you for the question.

    I am sorry to hear about this. BuddyBoss support is misguiding you If they said that you need to contact us for this. There is no difference between core xprofile fields and custom field types added by us when you are fetching the data.

    Irrespective of how a profile field was added, you can access the data using xprofile_get_field_data(“Filed Name or ID”, $user_id). That will give you the data stored for that user in that specific field.

    Here is a code sample that works for BuddyPress.

    
    add_action( 'bp_directory_members_item', function() {
    
    	$user_id = bp_get_member_user_id();
    	echo "About the user: ". xprofile_get_field_data("About", $user_id );
    	echo "Field 2 value:". xprofile_get_field_data("Field 2", $user_id );
    });
    

    You will need to update this with your field names instead of About abd “Field 2”. I haven’t tested this snippet with BuddyBoss theme. Please give it a try and see if it works with their theme or not.
    If not, you will need them to ask which hook to use instead of “bp_directory_members_item”. Rest of the code will remain same.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Rob ,
    Welcome to BuddyDev support forums.

    1. Is that for group forums or standalone forums?

    2. I am sorry, that’s not feasible. The 2.1.8 only updates a library used in our theme customizer(alpha colors). There is no side effect on front end as the files are not loaded there. Please check the MediaPress gallery settings and see if it was updated somehow.

    If you still face issue, Please share us with the staging site and we will help.

    3. This is handled via css media query. I will supply you the code. Please help me understand the topic context. Is it independent bbPress forum topic or is it part of group forum topic?

    4.Does GD bbPress Toolbox Pro support emoji or do you mean our emoji support? Currently, our emjoi/giphy support is limited to activity and messages. Did you add those 2 buttons in screenshot or were they added by GD Toolbox plugin?

    6. Sorry about that. Please allow us 2 days to add the compatibility.

    7. Do you have BuddyPress installed. If yes, Please visit Dashboard->Settings->BuddyPress and open the “Pages” tab.

    In that, Please select “Members” page for the members component and “My Activity” page for the activity component. Now, the pages will work as expected.

    8. Please visit Dashboard->Appearance->customize (it may take a little time while that page loads). Please click on “Additional CSS” section and add any custom css there.

    I hope that it helps partially. If possible, Please do provide us with a guest account to your staging site. That will help us help you with the first 2 issues quickly.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: BuddyBlog error leaving a comment and uploading media #42695

    Hi Jack,
    Welcome to BuddyDev.

    There are many possible reasons for this. One of the most common is some javascript error/conflict.

    Can you please look into your browser console and open a new topic with the details.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: What occurs when User Deletes a Comment in Moderation #42694

    Hi Debbie,
    Thank you for the question.

    1. Users can delete posts which are not hidden.
    2. If a post which was reported is deleted by user, we still leave it into the queue. It was deliberately made it this was as we wanted to avoid surprises.

    When a post is reported, there are notifications sent via email. If a user deleted that content and we emptied the queue, It would cause confusion.

    After your post above, I do see that leaving it in queue without extra information is not helpful either. Will it be better if we added a label that the content deleted by user?

    Regards
    Brajesh