In trying out different types of discovery searches in Koha (using the EDS API), I discovered that the JN Journal Title search would always return an error. I reported this to ByWater Solutions, our Koha support company, and the developer
submitted it as an issue to EBSCO through GitHub. After upgrading to Koha 17.11 and updating our EDS API plugin, I noticed that the search was still returning an error. When I went to the EDS interface to try a comparison search, I noticed that EBSCO does not offer JN as a field option in its advanced search. Instead, SO Source seems to serve the same purpose as JN Journal Title.
The EDS API plugin seems to be pulling the search fields from EBSCOadmin and syncing them daily:
I have checked our EDS API profile in EBSCOadmin looking primarily at search settings for modes, limiters, and expanders and have not been able to find where this information is kept so that I can turn off JN.
In the meantime, the developer at ByWater Solutions came up with this JavaScript workaround to suppress/hide the JN option:
$(document).on("change focus","#masthead_search",function(){
$("#masthead_search option[value='JN']").remove();
});
Is anyone else experiencing this with the EDS API plugin for Koha? Do you have a different solution?
Thanks,
Myka