View | Details | Raw Unified | Return to bug 29948
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-4 / +2 lines)
Lines 525-531 OPAC: Link Here
525
                  0: Disable
525
                  0: Disable
526
            - "interface for browsing all holdings (Elasticsearch only)."
526
            - "interface for browsing all holdings (Elasticsearch only)."
527
        -
527
        -
528
            - "Display the following information for authors and contributors to the detail pages in the OPAC."
528
            - "Display this information about authors and contributors on OPAC detail pages:"
529
            - pref: OPACAuthorIdentifiersAndInformation
529
            - pref: OPACAuthorIdentifiersAndInformation
530
              multiple_sortable:
530
              multiple_sortable:
531
                activity: Activity (372$a$s$t)
531
                activity: Activity (372$a$s$t)
Lines 537-545 OPAC: Link Here
537
                place_of_birth: Place of birth (370$a)
537
                place_of_birth: Place of birth (370$a)
538
                place_of_death: Place of death (370$b)
538
                place_of_death: Place of death (370$b)
539
                uri: URI (371$u)
539
                uri: URI (371$u)
540
            - "<p>Indentifiers: identifiers for authors and contributors to the detail pages in the OPAC."
540
            - "<strong>NOTE:</strong> Identifiers for authors and contributors - valid codes to use in the source subfield (024$2) are currently: orcid (ORCID), scopus (ScopusID), loop (Loop ID), rid (Publons ID), and viaf (VIAF ID)."
541
            - "This feature requires authorities with 024$2 and 024$a."
542
            - "Valid source codes in $2 are currently: orcid, scopus, loop, rid and viaf.</p>"
543
        -
541
        -
544
            - "Calculate the amount a patron has 'saved' by using the library based on replacement prices, and display:"
542
            - "Calculate the amount a patron has 'saved' by using the library based on replacement prices, and display:"
545
            - pref: OPACShowSavings
543
            - pref: OPACShowSavings
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/authority-information.inc (-3 / +3 lines)
Lines 10-22 Link Here
10
                <span>ScopusID: </span>
10
                <span>ScopusID: </span>
11
                <a href="https://www.scopus.com/authid/detail.uri?authorId=[% info.number | url %]">[% info.number | html %]</a>
11
                <a href="https://www.scopus.com/authid/detail.uri?authorId=[% info.number | url %]">[% info.number | html %]</a>
12
            [% CASE 'loop' %]
12
            [% CASE 'loop' %]
13
                <span>loop: </span>
13
                <span>Loop ID: </span>
14
                <a href="https://loop.frontiersin.org/people/[% info.number | url %]">[% info.number | html %]</a>
14
                <a href="https://loop.frontiersin.org/people/[% info.number | url %]">[% info.number | html %]</a>
15
            [% CASE 'rid' %]
15
            [% CASE 'rid' %]
16
                <span>Publons: </span>
16
                <span>Publons ID: </span>
17
                <a href="https://publons.com/researcher/[% info.number | url %]">[% info.number | html %]</a>
17
                <a href="https://publons.com/researcher/[% info.number | url %]">[% info.number | html %]</a>
18
            [% CASE 'viaf' %]
18
            [% CASE 'viaf' %]
19
                <span>VIAF: </span>
19
                <span>VIAF ID: </span>
20
                <a href="https://viaf.org/viaf/[% info.number | url %]">[% info.number | html %]</a>
20
                <a href="https://viaf.org/viaf/[% info.number | url %]">[% info.number | html %]</a>
21
            [% END %]
21
            [% END %]
22
        </li>
22
        </li>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt (-1 / +1 lines)
Lines 183-189 Link Here
183
                        <div class="col-lg-6 order-lg-3">
183
                        <div class="col-lg-6 order-lg-3">
184
                    [% END %]
184
                    [% END %]
185
                        <div class="author_identifier_info">
185
                        <div class="author_identifier_info">
186
                            <span>Identifiers/information</span>
186
                            <span>Author information</span>
187
                            <ul>
187
                            <ul>
188
                            [% FOR info IN Koha.Preference( 'OPACAuthorIdentifiersAndInformation' ).split(',') %]
188
                            [% FOR info IN Koha.Preference( 'OPACAuthorIdentifiersAndInformation' ).split(',') %]
189
                                [% NEXT IF author_information.keys.grep(info).size <= 0 %]
189
                                [% NEXT IF author_information.keys.grep(info).size <= 0 %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-2 / +1 lines)
Lines 496-502 Link Here
496
                        [% IF Koha.Preference( 'OPACAuthorIdentifiersAndInformation' ) && author_information.size %]
496
                        [% IF Koha.Preference( 'OPACAuthorIdentifiersAndInformation' ) && author_information.size %]
497
                            [% WRAPPER tab_item tabname= "author_identifiers_info" %]
497
                            [% WRAPPER tab_item tabname= "author_identifiers_info" %]
498
                                [% IF Koha.Preference( 'OPACAuthorIdentifiersAndInformation' ) && author_information.size %]
498
                                [% IF Koha.Preference( 'OPACAuthorIdentifiersAndInformation' ) && author_information.size %]
499
                                    <span>Author identifiers/information</span>
499
                                    <span>Author information</span>
500
                                [% END %]
500
                                [% END %]
501
                            [% END %]
501
                            [% END %]
502
                        [% END %]
502
                        [% END %]
503
- 

Return to bug 29948