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

    Hi Hoang,
    Thank you for purchasing from us.

    From the screenshot, I am not sure which theme or plugin you are using for that popup registration.

    If you can provide the details, we can look into it and make compatible(depends on the popup code too if they allow us hooking or not).

    If the plugin/theme is not free, we will need access to a copy of it to support it.

    If you are not comfortable with the above, Please let me know and we will issue the refund.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25304

    Hi Quint,
    Thank you.

    That is expected behaviour. in case of groups, if there is only sub tab, we hide the sub tab navigation and simply show the content.

    Do you want to change this behaviour?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25304

    Hi Quint,
    Thank you for the patience.

    The issue was the default sub tab was not active. Please edit the group tab and put your own content in place of the temporary placeholder I have put there.

    Please let me know if it works for you or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25304

    Hi Quint,
    Thank you for the reply.

    I am looking at it now. It is probably due to empty slug. I will update you in 1 hour.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25304
    Brajesh Singh on in reply to: Dynamic URL in Custom Profile Tab #45465

    Hi Michael,
    Thank you for the question.

    You may use the token ‘[displayed-username]’ in part of the link url. It will be replaced by the displayed user’s username.

    https://buddydev.com/docs/buddypress-user-profile-tabs-creator-pro/buddypress-user-profile-tab-link-configuration/

    We don’t have anything similar available for group though.

    PS:- Please open a new topic to help us assist you better.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25304

    Please use the master branch.

    Regards
    Brajesh

    • This reply was modified 3 years, 7 months ago by Ravi.
  • Keymaster
    (BuddyDev Team)
    Posts: 25304
    Brajesh Singh on in reply to: BuddyPress Moderation Tools #45434
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25304
    Brajesh Singh on in reply to: Failed Download – Network Error #45432

    Hi Tim,
    Thank you for the reply.

    I am sorry, I am not sure of the issue.

    Here is a fix that should show the badges above your social media

    
    add_action( 'bp_before_member_header_meta', function () {
    
    	if ( ! function_exists( 'bp_user_badges_get_user_badges_html' ) ) {
    		return;
    	}
    
    	echo bp_user_badges_get_user_badges_html( bp_displayed_user_id() );
    }, 0 );
    
    

    Can you please add this to your functions.php and let me know.

    PS:- Is there any chance that you have the badges disabled on profile. Before using this code, Please visit Dashboard->settings->Badge Settings and make sure that the “User Profile” is enabled.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25304
    Brajesh Singh on in reply to: BuddyPress Moderation Tools #45430

    Hi John,
    Thank you for the reply.

    I am sorry, I did not see any icon with the Gwangi theme activity screen. I found it after activating their Grimlock for BuddyPress plugin now.

    Please use this snippet

    
    // Use 'i' instead of Report for Moderation tools.
    add_filter( 'bpmts_report_button_args', function ( $args ) {
    	$args['label'] = ' ';
    
    	return $args;
    } );
    
    

    I request my team to test MediaPress with Gwangi and see if we can assist you.

    Regards
    Brajesh

    • This reply was modified 3 years, 7 months ago by Brajesh Singh. Reason: updated
  • Keymaster
    (BuddyDev Team)
    Posts: 25304

    Hi,
    You my try this.

    
    
    /**
     * Start buffering markup.
     * Keep a flag to discard it later.
     */
    function bd_custom_start_bp_nouveau_form_buffer() {
    	$GLOBALS['_bd_form_buffer_on'] = true;
    	ob_start();
    }
    
    //end buffering and discard.
    function bd_custom_end_bp_nouveau_form_buffer() {
    	if ( isset( $GLOBALS['_bd_form_buffer_on'] ) ) {
    		ob_end_clean();
    	}
    }
    
    add_action( 'bp_before_member_activity_post_form', 'bd_custom_start_bp_nouveau_form_buffer' );
    //add_action( 'bp_after_member_activity_post_form', 'bd_custom_end_form_buffer' );
    
    add_action( 'bp_before_directory_activity_content', 'bd_custom_start_bp_nouveau_form_buffer' );
    add_action( 'bp_after_activity_post_form', 'bd_custom_end_bp_nouveau_form_buffer' );
    
    

    This is for bp nouveau template pack. I do not use BuddyX and I am unable to confirm if it works with that theme or not.

    If it does not, Please consult the theme author.

    Regards
    Brajesh