BuddyDev

Search

BuddyPress Avitars

  • Participant
    Level: Initiated
    Posts: 7
    Dave228 on #6802

    I read your guide to BuddyPress avatars which sounded really good.

    What is the little photo called when its displayed in activity streams, member directories and “all users” WP admin dashboard. I would like to make these photos larger too.

    Regarding the WP admin dashboard “all users” editor. Do you know how to make the rows scroll so you can add more columns without the rows getting ridiculously tall.

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #6804

    Hi Dave,
    Those are activity avatars. what size you will like to have them? Do you want to have different size for activity and activity comments? Please let me know and I will help.

    About admin dashboard:-

    You can put the following code in your theme’s functions.php

    
    function buddydev_scrollable_users_list_css() {
    	?>
    <style type="text/css">
    	body.users-php .wrap {
    		overflow-x: auto;
    	}
    	body.users-php table.users {
    		table-layout: unset;
    	}
    </style>
    <?php
    }
    add_action( 'admin_print_footer_scripts-users.php', 'buddydev_scrollable_users_list_css' );
    
    

    That should do it.
    Hope that helps.

    regards
    Brajesh

You must be logged in to reply to this topic.

This topic is: not resolved