[Koha] Remove 23.59 info on Slips
Giannis Tsakonas
gtsak at upatras.gr
Wed Dec 5 21:42:38 NZDT 2018
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
More information about the Koha
mailing list