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

    Hi Rob,
    Thank you.

    1. Not sure why, will be able to have better idea afetr looking at it.

    2. Thank you.

    3. Thank you. Do you only need to do it for the bbPress section? If yes, Please let me know or do you want it for the whole site? Just need confirmation before putting the css.

    4. I am sorry, The feature is not supported and we don’t have enough resource to add support for GD tools currently. We will look into it in future. If you need it urgently(in couple of weeks), they will fall under customization.

    6. I am sorry, I was away for a day. Please expect the update on Monday.

    Please share a sample of the activation link. I see that the activation page on your site is functional but the url is using trailing slash, so just need to confirm the link used for activation .

    For the “imagick”, I will suggest installing and enabling it. It is recommended by WordPress for better processing of images.

    For “A scheduled event is late”:- There are several possible reasons. Does the site have enough traffic? The WP cron jobs are triggered by site visit(unless you have configured the cron job by OS).

    For the authorization header issue, you may want to take a look at this
    https://digwp.com/2021/01/fix-site-health-error-authorization-header-missing/

    and see if that works.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Add Profile Tabs #42744

    Hi Natalie,
    Thank you for the reply. Can you please point me to the support topic? Repeater field is part of BuddyBoss and they might be handling it in a way that it is not available beyond the normal profile pages.

    It will make a lot more sense for us to see it on some site using it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Conditional Profile Fields for BuddyPress update #42706

    Hi Bakhta,
    Hope you are doing well.

    I am sorry, I had to be mostly away from work on 18th and 19th Jan. So, the plugin will get delayed by another 2 days and now the expected release is 25th instead of 22nd.

    Thank you for your suggestion about the editable field. I am not sure if that makes sense with conditional field. Please allow us to reconsideration in future version(not in the next release).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Group Tabs PRO: Possible New Feature #42705
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25486

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

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

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

    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