[Tutorial] Custom Layout TOC : Menampilkan AuthorId Scopus
Posted: 07 Sep 2017, 09:56
Hai Guuuyyssss, apa kabar
Sekarang saya mau nyoba nampilin author id scopus di TOC (table of contents)
tampilannya seperti ini : Pertanyaannya adalah :
1.download-open-save lib/pkp/locale/en_US/user.xml (karena saya pakai bahasa english jurnalnya)
2.Ubah
Menjadi
Nanti ketika ada author baru yg mau daftar, tampilan registrasinya :
Setelah itu kita istirahat sebentar... hosh hosh hosh..lanjuuuuut
1. baca tutorial
3. done , Note : teks scopus atau orcid bisa diganti dengan logo, tinggal masupin deh link image nya hehehe
Sekarang saya mau nyoba nampilin author id scopus di TOC (table of contents)
tampilannya seperti ini : Pertanyaannya adalah :
Jawabannya adalah :emangnya OJS nyedia-in field isian scopus?
Solusi yg paling gampang :enggak hehehe
Yang harus di lakukanUbah / ganti translate field yg sudah ada
1.download-open-save lib/pkp/locale/en_US/user.xml (karena saya pakai bahasa english jurnalnya)
2.Ubah
Code: Select all
<message key="user.url">URL</message>
Code: Select all
<message key="user.url">Scopus</message>
1. baca tutorial
2. modif kode
Code: Select all
<div class="tocAuthors">
{if (!$section.hideAuthor && $article->getHideAuthor() == $smarty.const.AUTHOR_TOC_DEFAULT) || $article->getHideAuthor() == $smarty.const.AUTHOR_TOC_SHOW}
{foreach from=$article->getAuthors() item=author name=authorList}
{assign var="url" value=$author->getData('url')}
{assign var="orcid" value=$author->getData('orcid')}
{$author->getFullName()|escape}{if !$smarty.foreach.authorList.last}{/if}
{if $url||$orcid}
- <a target="_blank" href="{$url|escape}">[ SCOPUS ]</a><a target="_blank" href="{$orcid|escape}"> [ ORCID ]</a><br>
{else}
<br>
{/if}
{/foreach}
{else}
{/if}
</div>