Info
- 5 posts
- 3 voices
- Started 8 months ago by Ravi
- Latest reply from Ravi
- This topic is not resolved
How to display full image for author profile?
-
- Posted 8 months ago #
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:
Current thumbail at
Please let me know which file to edit and what to add.
Thanks
-
- Posted 8 months ago #
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.
-
- Posted 8 months ago #
<?php bbp_reply_author_link( array( 'sep' => '
' ) ); ?>to:
<?php bbp_reply_author_link( array( 'sep' => '
', 'size' => 100 ) ); ?>it works and i got my result
-
- Posted 8 months ago #
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.
-
- Posted 8 months ago #
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.
-
You must log in to post.