Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.
"Filtered by: Photos" doesn't display activity when "User commented album"
For fixing this open this file components/com_community/models/activities.php, add this code after line 657
// add album, cover, and avatar for filtered by photo
if (isset($filters['apps'][0]) && $filters['apps'][0] == 'photo') {
$filters['apps'] = array_merge($filters['apps'], array('album', 'avatar', 'cover'));
}