Monday, July 25, 2022

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.

No comments:

Post a Comment