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: 25347
    Brajesh Singh on in reply to: BuddyPress Profile Visibility Manager #6873

    Hi Joseph,
    Thank you for asking.

    The plugin completely hides the user if visibility is set to hidden. It does not hide individual tab, the complete single user section.

    Hope that clarifies.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: Display user role change in Activity stream #6872

    Hi Mitch,
    You may use this one

    
    
    $action = sprintf( '%s has become %s', bp_core_get_userlink( $user_id ), $role->name );
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347

    Hi Chris,
    I am glad you have modified it in the plugin.
    Here is what I was suggesting earlier for having a future proof copy

    
    copy bp-branded-login/blogin/login.php to yourtheme/blogin/login.php
    
    

    That way, the plugin will load it from your theme/child theme and your changes will always remain there.

    Hope that clarifies.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: Question about plugin bp group activities notifier #6864

    Hi Aladin,
    Thank you for reporting. I just looked at the plugin and as far as I see, It may be an issue with the BP Learndash.

    Please see the code here

    https://github.com/sbrajesh/bp-group-activities-notifier/blob/master/core/bp-group-activities-functions.php#L37

    It is using activity action to show the notification text and it seems that the plugin you are using is most probably storing empty actions.

    I will suggest checking with the plugin’t developer for more details.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: Bp-notify-post-author-blog-comment #6862

    Hi Luda,
    I am sorry for the delayed reply.

    Yes, the plugin will work for any post type having support for comments.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: BuddyPress Deactivate Account member counter #6861

    Hi Joni,
    Thank you for purchasing.

    I am sorry about the count issue.

    I will be updating the plugin tonight/tomorrow and fix the tottal issue on directory. I am sorry but I will be avoiding that on friends page. BuddyPress does not uses count from the current friends query, It stores statically the count and modifying that makes it extra queries.

    There are functions available for seting user account active/inactive

    
    //set the account of $user_id active
    bp_account_deactivator()->set_active( $user_id );
    
    //to set the account of $user_id inactive
    
    bp_account_deactivator()->set_inactive( $user_id );
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347

    Hi Chris,
    Please copy bp-branded-login/blogin/login.php to your theme/blogin/login.php and put this line

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

    Where you want the buttons to appear. The buttons will appear(though yopu may need to do a little css).

  • Keymaster
    (BuddyDev Team)
    Posts: 25347

    Hi Dave,
    Please copy template-parts/panel-right.php to your childtheme/template-parts/panel-right.php and remove the login form.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347

    Yes, you can.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: [Resolved] Working on my site – need some feedback #6847

    Hi Joshua,
    I am sorry for the delayed reply. Will try to post in time in future.

    About the cookie less domain, I am not sure about that. It’s something that I haven’t paid any attention but in case of multisite and with BuddyPress, I am not sure if it makes any sense.

    The site will be using cookie(and a lot of them) if BuddyPress is active, so I am not sure if what you are trying to achieve is even a good idea or not?