The OPAC library page (/cgi-bin/koha/opac-library.pl) shows all library branches. Often libraries have branches like WAREHOUSE, STORAGE, OR QUARANTINE that they would rather not show on that page. There should be a way to hide them. Maybe a checkbox option on the branches.tt like "Hide this branch from OPAC"?
In the short term I am using this jQuery in OPACUserJS to hide unwanted branches: if ( $('#opac-library').length ) { let branches_to_hide = ['STORAGE' , 'OUTREACH' , 'BOOKMOBILE']; branches_to_hide.forEach(function(item){ $('a[href*="'+item+'"]').parent().hide(); $('a[href*="'+item+'"]').parent().next('div').hide(); $('a[href*="'+item+'"]').parent().prev('hr').hide(); }) }
*** This bug has been marked as a duplicate of bug 26834 ***