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

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

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

    Please use the master branch.

    Regards
    Brajesh

    • This reply was modified 3 years, 10 months ago by Ravi.
  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: BuddyPress Moderation Tools #45434
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    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: 25392
    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, 10 months ago by Brajesh Singh. Reason: updated
  • Keymaster
    (BuddyDev Team)
    Posts: 25392

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Notification Options #45428

    Hi Debbie,

    Thank you for the question.

    The automatic mail can be configured per item type(and enabled/disabled by site admins).

    The plugin does not have a way to provide the further discussion on it and that’s one of the reasons why we make the email addresses of the reported as well as reporting user visible.

    Since a help desk/communication is beyond our current scope, we assume that having the email available will allow moderators communicate via other channels.

    I am not sure how do we incorporate the option to toggle notifications as the deletion/cleaning are link/url actions not a form submission.

    We will try to explore changing it in future.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: BuddyBlog Pro maybe(?) #45427

    Thank you for the reply.

    It is always a pleasure.

    Regards
    Brajesh