opac customization
Hope everyone had a good holiday. Got a question concerning the catalog search on the OPAC. I'd like to drop the word 'Search' from the beginning of the well and change 'Go" to Search. I'm sure it's pretty obvious but I haven't figured where that is being pulled from.
Hi Erik, On Tue, Sep 8, 2009 at 8:42 AM, Erik Lewis<elewis@ngrl.org> wrote:
Hope everyone had a good holiday. Got a question concerning the catalog search on the OPAC. I'd like to drop the word 'Search' from the beginning of the well and change 'Go" to Search. I'm sure it's pretty obvious but I haven't figured where that is being pulled from.
Both of these are coming from the template include file koha-tmpl/opac-tmpl/prog/en/includes/masthead.inc. Regards, Galen -- Galen Charlton gmcharlt@gmail.com
It's possible to do this with JavaScript if you don't want to modify your template. You would add this to the "opacuserjs" system preference: $(document).ready(function(){ $("#opac-main-search label").hide(); $("#searchsubmit").attr("value","Search"); }); -- Owen -- Web Developer Athens County Public Libraries http://www.myacpl.org
Sad but that was my chief goal of the day, already completed with two different ways to do it. Since that was so successful I'll as something new. I'm not a real fan of the opac user login taking up real estate I could use for other things on the opac home screen. Any thoughts on where to look to move the "Login to Your Account" and the Username and Password blanks to the top and replace the link there for "Login to Your Account" with Username and Password? On Sep 8, 2009, at 9:31 AM, Owen Leonard wrote:
It's possible to do this with JavaScript if you don't want to modify your template. You would add this to the "opacuserjs" system preference:
$(document).ready(function(){ $("#opac-main-search label").hide(); $("#searchsubmit").attr("value","Search"); });
-- Owen
-- Web Developer Athens County Public Libraries http://www.myacpl.org
Any thoughts on where to look to move the "Login to Your Account" and the Username and Password blanks to the top and replace the link there for "Login to Your Account" with Username and Password?
Try this: http://www.myacpl.org/koha/?p=494 -- Owen -- Web Developer Athens County Public Libraries http://www.myacpl.org
participants (3)
-
Erik Lewis -
Galen Charlton -
Owen Leonard