How to increase activity-avatar image size?
- 
		I found the default size of the activity-avatar image is created in buddypress/bp-activity/bp-activity-templatetags.php. On line 238 is a funtion which determines the default image size of 20px x 20px. function bp_get_activity_avatar( $args = '' ) {
 global $bp, $activities_template;
 
 $defaults = array(
 'type' => 'thumb',
 'width' => 20,
 'height' => 20,
 'class' => 'avatar',
 'alt' => __( 'Avatar', 'buddypress' )
 );Is there an easy way to change these values without touching the bp core files? Can i use some hook or filter in bp-custom.php? 
Viewing 10 replies - 1 through 10 (of 10 total)
	
Viewing 10 replies - 1 through 10 (of 10 total)
	
- The topic ‘How to increase activity-avatar image size?’ is closed to new replies.