Koha - changing advance search page
All, I'm trying to figure out out to remove whole sections from the advanced search in Koha, notably, Language and Subtype limits. I saw that Horowhenua Library Trust had done it for the subtype limits and there is an id="subtypes". But I can't figure out how to make the Language limits go away since there doesn't seem to be an id for that one. Thanks in advance. -- Linda Culberson lculber@mdah.state.ms.us Archives and Records Services Division Ms. Dept. of Archives & History P. O. Box 571 Jackson, MS 39205-0571 Telephone: 601/576-6873 Facsimile: 601/576-6824
But I can't figure out how to make the Language limits go away since there doesn't seem to be an id for that one.
Yeah, it really should have an ID. Without that I don't think there's a way to hide it with CSS. I can be hidden with JavaScript, though, if you put this in your opacuserjs system preference: $(document).ready(function(){ $("legend:contains('Language')").parent().hide(); }); -- Owen -- Web Developer Athens County Public Libraries http://www.myacpl.org
Owen, That worked. Thanks! On 5/2/2011 3:07 PM, Owen Leonard wrote:
But I can't figure out how to make the Language limits go away since there doesn't seem to be an id for that one.
Yeah, it really should have an ID. Without that I don't think there's a way to hide it with CSS.
I can be hidden with JavaScript, though, if you put this in your opacuserjs system preference:
$(document).ready(function(){ $("legend:contains('Language')").parent().hide(); });
-- Owen
-- Linda Culberson lculber@mdah.state.ms.us Archives and Records Services Division Ms. Dept. of Archives & History P. O. Box 571 Jackson, MS 39205-0571 Telephone: 601/576-6873 Facsimile: 601/576-6824
participants (2)
-
Linda Culberson -
Owen Leonard