It is a recommendation to display the ISSN on the header of the publication. How do I create and use separate variables for each ISSN?
On the footer only one is shown…
I tried searching here and on the older forum, but found nothing that could actually help.
I’m modifying the code in templates/common/footer.tpl to:
{if $currentJournal}
{assign var=eissn value=$currentJournal->getSetting(‘onlineIssn’)}
{assign var=pissn value=$currentJournal->getSetting(‘printIssn’)}
{/if}
{if $eissn}
{translate|assign:“issnText” key=“journal.issn”} // here’s where I don’t know how it works… I need the issnText to be e-Issn or the specific variable for it…
{/if}
I also need to know how to print it on screen, but that can be more easily found from code available in header.tpl.