@@ -, +, @@ --- .../opac-tmpl/bootstrap/en/modules/opac-results.tt | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt @@ -189,20 +189,14 @@ [% # Cell 1: Checkbox %] - [% IF Koha.Preference( 'opacbookbag' ) == 1 %] + [% IF + ( Koha.Preference('opacbookbag') == 1 ) + || ( Koha.Preference('virtualshelves') == 1 ) + || ( Koha.Preference('OpacBrowseResults') == 1 ) + || ( Koha.Preference('RequestOnOpac') == 1 && (not SEARCH_RESULT.norequests) && Koha.Preference('opacuserlogin') ) + %] - [% ELSE %] - [% IF Koha.Preference( 'virtualshelves' ) == 1 %] - - [% ELSE %] - [% IF Koha.Preference( 'RequestOnOpac' ) == 1 %] - [% UNLESS ( SEARCH_RESULT.norequests ) %] - [% IF Koha.Preference( 'opacuserlogin' ) == 1 %] - [% END %] - [% END %] - [% END # IF RequestOnOpac %] - [% END # IF virtualshelves %] - [% END # IF opacbookbag%] + [% END %] [% # Cell 2: Show result number if OpacHiddenItems is empty %] --