Order of volume, number and year of the issue?

OJS 3.3.0-15
Sorry for such a simple question, but I haven’t been able to solve it for a long time. How can I change the order of volume, number and year of an issue? The issue is currently displayed as
Vol. 1 No. 1 (2023)
But I wish there was
(2023) Vol. 1 No. 1
I looked in issue_summary or Issue.inc.pkp, but the changes don’t work. I also tried changing other files, but did not find the right solution.

I solve my problem.
Swap the lines in the Issue.inc.php file

$displayOptions = array(
			'showYear' => $this->getData('showYear'),
			'showVolume' => $this->getData('showVolume'),
			'showNumber' => $this->getData('showNumber'),
			'showTitle' => $this->getData('showTitle'),
		);

This topic was automatically closed after 6 days. New replies are no longer allowed.