Multiple Affiliations on Quick Submit plugin

I want to upload more than one affiliation for authors during the process of uploading an article on the QuickSubmit Plugin. How do I achieve this?

Regards

1 Like

Hi @NadineWubbeling

Currently there is no possibility in OJS to add several affiliations, only one affiliation (in different languages, if supported).

Best,
Bozana

Made Multiple Affiliation in Article details (but not in Quick submit plugin):
Need to insert “<br>” in Affiliation string.
Changes in lib/pkp/classes/identity/Identity.inc.php and in /templates/frontend/objects/article_details.tpl

Identity.inc.php:
function getLocalizedAffiliationMultiple() {
echo str_replace(’&lt;br&gt;’,’<br>’, htmlspecialchars($this->getLocalizedData(‘affiliation’)));
}

article_details.tpl:
{$author->getLocalizedAffiliationMultiple()|escape}
(instead of $author->getLocalizedAffiliation())