XF 1.5 Recent activity - how to extend days shown

erich37

Well-known member
it seems there is a cut off in the "Recent Activity" at a users Profile-page.
meaning, it only shows the activity from the last few days.

Is there a way to extent this or extend the number of days shown of the users "Recent Activity", so that more content is being shown ?
I know there is an option somewhere, but can not find this option-setting anymore.

I am XF version 1.5.16



Appreciate your help!
 
The news feed (activity) settings let you change "News Feed Items to Fetch With Each Request" but there's a hard coded limit to days:

./library/XenForo/Model/NewsFeed.php: $expiryTime = 7 * 86400; // TODO: hard coded to 7 days

You could edit this file to make it longer, but you'll need to edit it every time you update XF.
 
Top Bottom