Number of Activity Post per Page in Activity Page
wztantra
New
Hi. Is there a way I could change the number of posted activity per page in the Activity Area?
Thank you.
Tagged:
0
Comments
Welcome to the community!
There is no way to do this out of the box. The change is simple but requires modification of the core files. This is not ideal as this change will be wiped out when you apply security updates to your forum.
In
/applications/dashboard/controllers/class.activitycontroller.phpchange line 133 to:list($Offset, $Limit) = OffsetLimit($Page, c('Garden.Activities.PerPage', 30));Then add the following line to your
/conf/config.phpfile:You can change 30 to be whatever number you want.
I have also filed PRs to add this capability to new versions of Vanilla. (here and here).
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
@hgtonight Thanks! It worked!