I am trying to set up an electronic journal using ejournal. On the issue page I would like to show the author name in addition to the title, similar to the ikaros journal. I have tried to modify display-issue.inc.php, but I don't know how to access the author name (it does not seem to be listed inn $article. Do you have any suggestions?

thank you.

Comments

romca’s picture

The best way (if you have ejournalauthors module enabled) is probably to edit

template/standard.inc

function theme_ejournal_article_reference:

add this call: ejournalauthors_get_authors_links($journal, $article->nid)

that produces html ouput, you can also want list of authors: ejournalauthors_get_authors($journal, $article->nid)

you can also place the same call in the template (if you have the journal object and nid):

ejournalauthors_get_authors_links($journal, $article->nid);

hdoll’s picture

Thank you for the hint. Somehow the functions don't find any authors. I'll have to keep digging.

romca’s picture

try to see if you pass correct arguments:

print_r($journal);
print_r($article);

romca’s picture

Status: Active » Closed (fixed)