-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.5.0 compatibility #236
base: main
Are you sure you want to change the base?
3.5.0 compatibility #236
Conversation
c77ec2b
to
57ffa52
Compare
57ffa52
to
f6a9c0e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @kaitlinnewson, lots of good tweaks here. Just a few comments to check on.
@@ -166,15 +173,18 @@ | |||
{if $author->getLocalizedAffiliation()} | |||
<div class="article-author-affiliation"> | |||
{$author->getLocalizedAffiliation()|escape} | |||
{if $author->getData('rorId')} | |||
<a href="{$author->getData('rorId')|escape}">{$rorIdIcon}</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is subject to change based on @GaziYucel's active work on RORs and multiple affiliations.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I'm keeping an eye on that issue and can either wait to merge the theme updates or do another PR once that has been merged.
<div class="orcid"> | ||
{if $author->getData('orcidAccessToken')} | ||
{$orcidIcon} | ||
{/if} | ||
<a href="{$author->getOrcid()|escape}" target="_blank"> | ||
{$author->getOrcid()|escape} | ||
<a href="{$author->getData('orcid')|escape}" target="_blank"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth pinging @ewhanson to see how this might change with his nearly-complete ORCiD work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is already compliant with ORCID move to the core -- I am not sure, but I think the way orcid is displayed should not change any more, but maybe to double check. If it changes, it will change in the core and then also themes need to be considered (again)...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I confirmed with @ewhanson that there aren't further changes planned to ORCID for 3.5 that will impact the templates.
No description provided.