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 Nik,
    Thank you for the question.

    I am sorry, we lack the time to look into BuddyBoss code for the same.

    Please contact their support for assistance.

    Regards
    Brajesh

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

    Hi John,
    Thank you for the reply.

    You may ad dthe following code( Please use any code snippet plugin if needed).

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

    This will change the report to ‘i’. If you want an icon, Please let me know the icon font and code(you can ask gwangi authors for it if they provide one).

    I hope they are able to add MedaPress support.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392

    Hi Abhist,
    That’s not the right way to handle it. anyone with basic web dev knowledge and get around this.

    Which theme and template pack are you using? The correct solution will be to remove the form from the page completely.

    Regards
    Brajesh

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

    Hi Nik,
    Thanbk you for the reply.

    For us, adding the tab and form is not an issue at all. we have done it in past and it is easy to achieve. The problem is correctly linking post activity to group without too much hack. we were able to link the post activity to group but that feels way much hacky and our goal has been to avoid fragile code.

    That’s the reason behind this.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Issues with registration member types. #45414

    Hi Ethan,
    Thank you for the patience.

    I have been able to troubleshoot and find the issues.

    The problem is if you remove one of the tabs created by BP Custom Profile Menu via code, It breaks all of the tabs created by that plugin.

    The reason is when you remove a nav item, BuddyPress unregisters the associated callback(screen function). The plugin uses same callback for all the tabs(which is correct way) but if you remove one of them via code, It will break all of the tabs registered via that plgin.

    If you comment this line

    
     bp_core_remove_nav_item( 'job-listings' );
    

    Like this

    
     // bp_core_remove_nav_item( 'job-listings' );
    

    The other tabs removal will work fine.

    PS:- We haven’t been able to reproduce the activation issue you were facing. Going to give it another try this weekend and will update you on that.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: [Resolved] Buddypress Emails Not Sending #45405

    Thank you Tosin and Joseph.

    It is good to know the solutions being used to overcome the issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: [Resolved] Buddypress Emails Not Sending #45399

    Hi Tosin,
    Thank you for the suggestion.

    I did not suggest this as this approach will force use of plain text email instead of the default BuddyPress HTML emails.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: [Resolved] Buddypress Emails Not Sending #45396

    Hi Joseph,
    Welcome to BuddyDev support forums.

    Your issue is not specific to your install. It is an issue with BuddyPress mailing system and the SMTP plugins.

    BuddyPress does not uses wp_mail() and extend PHP Mailer to send email. This is not the standard way handled by WordPress(though WordPress does similar thing internally).

    That’s why most of the smtp plugins are not compatible with BuddyPress. If an SMTP plugin needs to be compatible with BuddyPress, they will have to add some hooks/support specifically for BuddyPress.

    Please contact the SMTP plugin authors and request them to support BuddyPress.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Issues with registration member types. #45395

    Hi Ethan,
    Thank you.
    I will be checking in the day and getting back to you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: [Resolved] Delay when posting on BP #45394

    Hi Daniel,
    You are welcome.

    I am glad It is resolved.

    Regards
    Brajesh