Plugin: Featured Member(s) Widget

Join this plugin group to follow comments, support topics and reviews.

Welcome to the Support Forum for the Featured Members Widget (5 posts)

Started 1 year, 9 months ago by: Jeff Sayre

  • Profile picture of Jeff Sayre Jeff Sayre said 1 year, 9 months ago:

    When requesting support, please provide the following details:

    1. The version of WP you’re running.
    2. Whether WP is in single-site or multi-site mode
    3. The version of BuddyPress you’re running
    4. A detailed description of your issue
    5. Any error messages
    6. What other plugins you’re running
    7. Whether you are using the default BP theme or a custom theme
    ____________________

    Note: If you enjoy my plugin, please consider making a donation to keep me alive! You can click the donate tab above.

  • Profile picture of jaxster jaxster said 1 year, 9 months ago:

    Hi Steve,
    I use your widget on my site http://www.3dorigamiart.com and I was wondering where I can change the size of the avatar that gets displayed? Right now it defaults to a 25px X 25px. I was wondering if I can change that

  • Profile picture of Jeff Sayre Jeff Sayre said 1 year, 9 months ago:

    @jaxster-

    The new version of the widget does not allow for the avatar size to be changed. This is because BuddyPress changed the way it handles avatars. I need to look into the code to see how I can resurrect this feature. But for now, I decided that it was important to get the widget updated and re-released. I’ll see if I can add back avatar sizes in the next version.

  • Profile picture of Sarah Gooding Sarah Gooding said 1 year, 7 months ago:

    @jaxster In the meantime you can change the size of the avatar using CSS. Where you see this in the bp-featured-members-widget.php file :
    <a href="” title=”"> $member_id, ‘type’ => ‘thumb’ ) ) ?>

    Change thumb to ‘full’ and then when you size the full one down using CSS, it won’t lose image quality.

    div.item-avatar img {
    width: 80px;
    height: 80px;
    }

  • Profile picture of Sarah Gooding Sarah Gooding said 1 year, 7 months ago:

    Whoops, it didn’t post everything in the first snippet of code, but it’s around line 54 in that file.