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: 25485
    Brajesh Singh on in reply to: mobile problems #30490

    Hi Ruben,
    Welcome to BuddyDev.

    Are you using a custom theme? Is there any stylistic/behavioural change applied by your theme on the multi selector on mobile screen?
    I do not see any reason why a condition that works on desktop will not work on mobile.

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Mediapress Bulk Uploads #30489

    Hi Nik,
    Thank you.

    We can certainly improve the UI in future.
    Before investing any time in MediaPress & BuddyPress integration, I am waiting to see BuddyPress Team’s plan about the attachment functionality.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Auto join groeps Auto List error #30488

    Hi Peter,
    Thank you.

    I am sorry, Can you please help me understand this
    “automaticly adding users to the group but groups to the user”

    Question:- Do you want to add a group of users to all groups when a group is created?

    Also, the plugin does add users on account activation. Use use the the action ‘bp_core_activated_user’ on priority 5.

    The only reason it might not work is if you have some plugin redirecting on activation with a higher priority.

    Can you please check and let me know.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: MediaPress myCRED Addon #30487

    Hi Linda,
    Please allow us to look into it and provide you an update by Monday.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Sucheta,
    I am sorry, I did not see your reply earlier.

    1. The code should not go to buddypress-functions.php. They will have no effect in it.

    2. Please put it somewhere in your theme/child theme’s header for testing

    3. If you are using Nouveau template, only then use the 2nd code, otherwise that may cause fatal error(you can check the template pack from dashboard->settings->BuddyPress->Options)

    Please let me know how it goes.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    Thank you for the question.

    Please use a plugin like this
    https://wordpress.org/plugins/email-templates/

    for sending html emails.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: BuddyPress Auto Follow plugin #30483

    Hi Lajuan,
    Thank you for the question.

    The plugin is 100% compatible with the BuddyBoss platform.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    There is no font end management screen.

    The roles with moderator can view and manage reports in the dashboard.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Moderation characteristics #30463
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Sucheta,
    Thank you for sharing the details.

    It seems to me that your theme lacks the template_notices action on profile pages.

    You can verify it by adding

    
    
    <?php do_action( 'template_notices') ;?>
    
    

    if using BuddyPress legacy template pack or if you have BuddyPress Noveau template pack enabled, you can use this

    
    <?php bp_nouveau_template_notices(); ?>
    
    

    and see if the notice is shown or not.

    We use BuddyPress’s API for adding notice. To render the notice, the theme needs to have the above snippet or a variant of it for Nouveau.

    Please let me know if that works or not?

    Regards
    Brajesh