Show more issues on homepage

Currently, the journal homepage shows the current issue. After reading this forum, I found it will require modification of the code to show more recent issues. I am using Open Journal Systems 2.4.8.0. Please suggest what code I should add. Thank you.

1 Like

Currently the index handler select the current issue for display here:

It is passed off to the template index/journal.tpl, which displays the issue’s detail with this call:

Which brings in the issue template:

To make this display more than one issue, you would need to iterate over the issues, similar to the way that the site homepage would iterate over the journals:

The journals iterator is constructed here:

This solution may relate to these prior questions:

1 Like