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: 25494
    Brajesh Singh on in reply to: Circle followers list #29306

    Hi,
    Can you please provide me a guest account to check it on your site. I am not sure what could be the issue as it seems working fine for me. It might be some setting.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Tim,
    Welcome to BuddyDev.

    The Moderation tools plugin does offer auto moderation for bbPress forum topic & replies. You can set to to make sure all the topics/replies need approval.

    We also offer whitelisting user roles. So, if you white list a role, their content will not be reported/moderated.

    As far as I see, we do not offer a way to identify if a user was white listed by admins earlier and they should not be auto moderated(roles is fine).

    I will be glad to add whitelisting of individual user by admin in our upcoming release.

    Please do let me know if you have any other question.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Circle followers list #29297

    Hi,
    I am sorry for the trouble. It seems it was caused by non unique circle ids array.

    can you please upgrade to 1.0.8 and let me know if it works or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi,
    Thank you for the patience.

    Please upgrade to 1.4.1
    It adds the support for redirecting users on their first login to a different location. You can configure it on edit member type page and when a user logs in for the first time, they will be redirected to that url.

    To answer your other question, No, this plugin does not allow having different label for member type values.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Circle followers list #29294

    Hi,
    Please visit Dashboard->Settings->BuddyCircle and make sure you have atleast 1 role selected in who can create circle option.

    This happens when there are no roles selected. I will make sure to cast to empty array in future release.
    For now, selecting any role will fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Shannon,
    Please use the following css and adjust the vh as needed

    
    .mpp-lightbox-with-comment-media-container .mpp-lightbox-single-photo img {
    	
    	max-height: 90vh;
    }
    

    vh stands for viewport height.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494
    Brajesh Singh on in reply to: Recent Visitors Widget #29290

    Hi Jonathan,
    Hope you are doing well.

    Please upgrade to 1.6.1 . You can use the “Recent Visitors” widget to show the visitors of logged in user.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi Shannon,
    I will share an example.

    I am using wp_footer to add the js code but you can put it in your theme’s js as well.

    
    add_action( 'wp_footer', function(){
        ?>
    <script type="text/javascript">
        if( typeof jQuery !== "undefined" ) {
            jQuery(document).on('mpp:uploader:upload:complete', function () {
                alert( "All files uploaded.");
            });
        }
    </script>
    <?php
    } );
    
    

    This will show an alert to the user when all uploads are complete.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Thank you Jay.

    I am glad it worked.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25494

    Hi,
    Please upgrade to 1.6.1 and use the following code

    
    /**
     * Show for other logged users.
     */
    add_filter( 'rv_show_visitors_component', function () {
    	return is_user_logged_in();
    } );
    

    That will enable visitors component on other user’s profile too.

    Regards
    Brajesh