20 Nov
2020
20 Nov
'20
4:57 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27067 --- Comment #1 from Lucas Gass <lucas@bywatersolutions.com> --- 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(); }) } -- You are receiving this mail because: You are watching all bug changes.