https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27067
--- Comment #1 from Lucas Gass <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
