@@ -, +, @@ PatronSelfRegistrationLibraryList only has one library - Modify the PatronSelfRegistrationLibraryList system preference to include only one library. - Go to the self-registratoin page in the OPAC. - Under "Home library," you should see the library name. If you inspect the source you should see the library branchcode in a hidden form. - Confirm that the form submission includes the correct library information. --- .../bootstrap/en/modules/opac-memberentry.tt | 32 ++++++++++++++-------- 1 file changed, 20 insertions(+), 12 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt @@ -239,21 +239,29 @@ [% UNLESS hidden.defined('branchcode') %]
  • - [% IF mandatory.defined('branchcode') %] - - [% ELSE %] - - [% END %] + [% IF ( libraries.size > 1 ) %] + [% IF mandatory.defined('branchcode') %] + + [% ELSE %] + + [% END %] - + [% FOREACH l IN libraries %] + [% IF l.branchcode == borrower.branchcode %] + + [% ELSE %] + + [% END %] [% END %] + + [% ELSE %] + Home library: + [% FOREACH l IN libraries %] + [% l.branchname | html %] + [% END %] - + [% END %]
  • [% END %] --