Show nothing when cover images are not found


"No cover image available" plate on OPAC result reduce the beauty of OPAC interface. We can hide it using JQuery.

Goto Administration › System preferences Search OPACUserJS
Copy and paste the following script into the box.

$(document).ready(function(){
    $('.no-image').remove();
});


Save.

See the result.
Reference
https://wiki.koha-community.org/wiki/JQuery_Library#Show_nothing_when_cover_images_are_not_found

No comments:

Post a Comment