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

    Hi Janet,
    Thank you.

    I had a look at it but I am not sure of the issue yet. It seems to be a member types pro conflict.
    Is there any chance that you are using a member type field on registration?

    Also, are you able to use the default registration page or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: [Resolved] Page header images issues in CB #35533

    Hi Janet,
    Thank you for the reply.
    I am glad it worked.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: [Resolved] BuddyBlog Pro issues #35522

    Hi Julia,
    Thank you got the patience.

    1. It was a bug, I have fixed and It will be available in our next release(within 48 hours).
    2. Here are some example css, Please feel free to adapt.

    
    .bblpro-form-wrapper #postimagediv a{
    	background-color: red;
    }
    .bblpro-form-wrapper #postimagediv #remove-post-thumbnail{
    	background-color:green;
    }
    

    You can also use chrome developer tools to find the selector and apply custom styles.

    4. For Me, it is working on both the screens(list and single). Where is the single post displayed(on the user’s profile or in the site’s post archive).

    Please let me know and I will assist further.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi Dan,
    I am sorry, our team missed to assist you with it.
    Are you still facing the issue?

    Try adding a value for the position(lower value means earlier). Let me know if that works. Or, Please provide me temporary access to the staging site(if available) and I can configure you and post how to do the reordering.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: How to make members sub menu show as dropdown #35520

    Sorry for missing the reply.
    I am sorry, we cannot assist you with this kind of custom jobs. You will need to look into the templates(buddypress/members/single folder) or hire a developer to assist you with it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: [Resolved] Page header images issues in CB #35519

    Hi Janet,
    Please put this code either in bp-custom.php or in your child theme’s functions.php

    
    
    /**
     * Force group activity to only list updates.
     */
    add_filter( 'bp_after_has_activities_parse_args', function ( $args ) {
    
    	if ( ! bp_is_group() ) {
    		return $args;
    	}
    
    	$args['action'] = 'activity_update';
    
    	return $args;
    } );
    

    Regards
    Brajesh

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

    Hi John,
    I have looked at it.

    There are 2 ways to add extra data(custom fields) to the post.
    1. Using shortcode
    2. Modifying the template

    Normally, developer modify the template file to add the the_field(), get_the_field() etc functions for fetching/showing the custom field.

    In our case, allowing to control the content of specific tab via template files does not seem user friendly to me. It is going to cause a lot of confusion. So, I edited the dynamic group content plugin shortcode and also added a shortcode for the ACF.

    Here is a screenshot showing it in action

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

    Will something like this resolve your issue? Please let me know and I will upload the modified code.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi Aurelia,
    Welcome to BuddyDev.

    Thank you for reporting the issue. Please allow me 24-48 hours to push a release on wordpress.org with the fix for this text string.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Badges image size for Buddy Boss platform #35514

    Hi Daniel,

    Welcome to BuddyDev forums.

    Thank you for your interest in the plugin.
    We don not have any specific dimension that we recommend. It is you choice. You can use a line of css to constrain the dimensions.
    The only thing we recommend is to use square images. The same image is used on profile as well as the directory etc, so we it helps if scaling is needed.

    Regards
    Brajesh