@@ -, +, @@ - Make sure your OpacShelfBrowser pref is set to "Show" - Search for a record with items and callnumbers in your OPAC - "Browse shelf" - Navigate back and forth, verify the information showing on top of the list is correctly formatted - Try different combinations for the following prefs: - ShelfBrowserUsesCcode - ShelfBrowserUsesHomeBranch - ShelfBrowserUsesLocation - Verify the display is always nicely formatted --- koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc @@ -2,11 +2,11 @@ [% IF OpenOPACShelfBrowser %]
- [% IF ( starting_homebranch ) %]Browsing [% starting_homebranch | html %] Shelves[% END %] - [% IF ( starting_homebranch && ( starting_location || starting_ccode ) ) %], [% END %] - [% IF ( starting_location ) %]Shelving location: [% starting_location | html %][% END %] - [% IF ( ( starting_homebranch || starting_location ) && starting_ccode ) %], [% END %] - [% IF ( starting_ccode ) %]Collection code: [% starting_ccode | html %][% END %] + [%- IF ( starting_homebranch ) %]Browsing [% starting_homebranch | html %] shelves[% END -%] + [%- IF ( starting_homebranch && starting_location ) %], [% END %] + [%- IF ( starting_location ) %]Shelving location: [%- starting_location | html -%][% END -%] + [%- IF ( starting_homebranch && starting_ccode ) %], [% END %] + [%- IF ( starting_ccode ) %]Collection: [%- starting_ccode | html -%][% END -%] Close shelf browser
--