Currently the default action for the top search box on the staff interface homepage is "Check out". This makes sense for library staff working at the circulation desk. However, for libraries using a self-checkout module, that might not be the desirable default action. We would prefer to have "Search catalog" as default action on the homepage. Would it be possible to have libraries choose the default action on the homepage?
It would probably be possibly to solve this with a little jQuery.
If you add this to IntranetUserJS it will switch to the catalog search form on any page where the circulation form is active by default: $(document).ready(function(){ if( $("#circ_search_panel").length > 0 && $("#circ_search_panel").hasClass("active") ){ $("#header_search").selectTabByID("#catalog_search_panel"); } });
While the jquery is fine for a workaround, it would be really helpful to have the ability to set a default action. We get lots of requests for this. We are trying to discourage the use of jquery and instead have these functionalities built into Koha.
+1 As a non-circulating library we had JQuery built to default to search the catalog. Being able to set this ourselves would have been great. After the 24.05 update on our dev system that JQuery did not follow through and now we have to manually change the search every time until that JQuery is added back in.
(In reply to Owen Leonard from comment #2) > If you add this to IntranetUserJS it will switch to the catalog search form > on any page where the circulation form is active by default: > > $(document).ready(function(){ > if( $("#circ_search_panel").length > 0 && > $("#circ_search_panel").hasClass("active") ){ > $("#header_search").selectTabByID("#catalog_search_panel"); > } > }); Thanks, Owen! Our Koha version (23.11) seems to be using different terms for id/class/hrefs, so this didn't work for us. But after taking out "_panel", to match the terms used in our version, it worked: $(document).ready(function(){ if( $("#circ_search").length > 0 && $("#circ_search").hasClass("active") ){ $("#header_search").selectTabByID("#catalog_search"); } }); Because we do have circulation, we didn't want this to be default on the circulation pages, so I changed it only on homepage and Reports module pages (all the other pages already had the desired default action) with this JQuery: $(document).ready(function(){ if( $("#circ_search").length > 0 && $("#circ_search").hasClass("active") ){ $("#main_intranet-main #header_search").selectTabByID("#catalog_search"); } }); $(document).ready(function(){ if( $("#circ_search").length > 0 && $("#circ_search").hasClass("active") ){ $(".rep #header_search").selectTabByID("#catalog_search"); } }); This is fine for a temporary solution, but as I've already noticed that the terms for id/class/hrefs change after upgrades, I also think that it would be better to have a system pref in the staff client to set this.