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
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
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(’<br>’,’<br>’, htmlspecialchars($this->getLocalizedData(‘affiliation’)));
}
article_details.tpl:
(instead of $author->getLocalizedAffiliation())
{$author->getLocalizedAffiliationMultiple()|escape}