Forums

Join
bbPress Support ForumsTroubleshootingHow to display full image for author profile?

Info

How to display full image for author profile?

  1. Hi,

    The single topic page shows only the thumbnail of an author and it looks fuzzy.

    How do I make it to show full image?

    I am using bbPress 2.0 plugin.

    http://ravidreams.in/offgrid/forums/topic/alternatives-to-st-augustine-grass/

    is an example topic page.

    Full image URL format is here:

    http://ravidreams.in/offgrid/wp-content/uploads/avatars/7/71c948a9c1d112404e9f6ec0e62bcae6-bpfull.jpg

    Current thumbail at

    http://ravidreams.in/offgrid/wp-content/uploads/avatars/7/71c948a9c1d112404e9f6ec0e62bcae6-bpthumb.jpg

    Please let me know which file to edit and what to add.

    Thanks

  2. Not tested:

    In the file loop-single-reply.php change the following line:
    <?php bbp_reply_author_link( array( 'sep' => '<br />' ) ); ?>

    to:

    <?php bbp_reply_author_link( array( 'sep' => '<br />', 'size' => 100 ) ); ?>

    change 100 to whatever size you prefer.

  3. <?php bbp_reply_author_link( array( 'sep' => '
    ' ) ); ?>

    to:

    <?php bbp_reply_author_link( array( 'sep' => '
    ', 'size' => 100 ) ); ?>

    it works and i got my result

  4. I am using bbPress 2.0 plugin version and could not find a file called loop-single-reply.php

    I could find a single-reply.php and it had a code like

    <td class="bbp-reply-author"><?php bbp_reply_author_link( array( 'type' => 'avatar' )

    I tried adding 'size' => 100 to this but did not work.

    We are also using BuddyPress inside the site and guess the avatars are loaded from BuddyPress.

  5. The issue has been solved based on

    http://buddydev.com/buddypress/changing-default-avatar-size-croppedused-by-buddypress/

    The bbPress avatar has been fetching it from BuddyPress avatar.

  6. You must log in to post.