@@ -, +, @@ --- koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/shelfbrowser.inc @@ -3,8 +3,10 @@
[% IF ( starting_homebranch ) %]Browsing [% starting_homebranch | html %] Shelves[% END %] - [% IF ( starting_location ) %], Shelving location: [% starting_location | html %][% END %] - [% IF ( starting_ccode ) %], Collection code: [% starting_ccode | html %][% 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 %] Close shelf browser
--