Dear colleagues

we would like to erase the time section from the due date information on all slips. As far as we know, the JQuery below erases this piece of info on staff client and OPAC interfaces.

$("#issuest td:contains('23:59')").each(function() {
var text = $(this).text().replace('23:59', '');
$(this).text(text);
});
$(".datedue:contains('23:59')").each(function() {
var text = $(this).text().replace('23:59', '');
$(this).text(text);
});

Testing this however, seems that it does not work on Slips. This creates a conflict between working hours and info that the users get through slips.

Note: we do not do hourly loans.

Any help will be very much appreciate.

G
_______________________________________________
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to