@@ -, +, @@ customize text for OPAC user/pass information --- C4/Auth.pm | 1 + koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc | 3 +++ koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt | 3 +++ 3 files changed, 7 insertions(+) --- a/C4/Auth.pm +++ a/C4/Auth.pm @@ -421,6 +421,7 @@ sub get_template_and_user { LibraryNameTitle => "" . $LibraryNameTitle, LoginBranchname => C4::Context->userenv?C4::Context->userenv->{"branchname"}:"", OPACAmazonCoverImages => C4::Context->preference("OPACAmazonCoverImages"), + NoLoginInstructions => C4::Context->preference("NoLoginInstructions"), OPACFRBRizeEditions => C4::Context->preference("OPACFRBRizeEditions"), OpacHighlightedWords => C4::Context->preference("OpacHighlightedWords"), OPACItemHolds => C4::Context->preference("OPACItemHolds"), --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc @@ -285,6 +285,9 @@
+ [% IF ( NoLoginInstructions ) %] + [% NoLoginInstructions %] + [% END %] [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]

Don't have an account? Register here.

[% END %]
--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt @@ -78,6 +78,9 @@ [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]

Don't have an account? Register here.

[% END %] + [% IF ( NoLoginInstructions ) %] + [% NoLoginInstructions %] + [% END %] [% END # /casAuthentication %] --