We have installed Koha 2.2.9 and are trying to set up our parameters such that the Catalogue -> Add Biblio screen will only display the fields/subfields that we use. We have tried to delete those we don't want using Parameters -> Biblio framework (MARC structure) but when we get back to the Add Biblio screen, it still displays all the fields and subfields that we do not want and this is too cumbersome for data entry. Please assist us in this regard. Regards, Douglas
Douglas, Is it possible that you have created a second framework for your changes and that you are not choosing to use that instead of default when you enter a new record? If this problem persists, here is a quick method to remove tags through the SQL interface by updating the marc_subfield_structure table: http://nrcfosshelpline.in/koha/ticket/40 This is an example of the command: mysql> update marc_subfield_structure set tab=-1 where tagfield in (022, 250, 256) and frameworkcode='TEST'; to hide the 022, 250, and 256 tags (by setting their tab number to -1) in the framework with code TEST. This doesn't actually delete the tags but does hide them in the interface. --Betsy On Thu, Sep 25, 2008 at 3:44 AM, Mbangi Mlandeli Douglas <dmbangi@fctve.ce.ac.bw> wrote:
We have installed Koha 2.2.9 and are trying to set up our parameters such that the Catalogue -> Add Biblio screen will only display the fields/subfields that we use. We have tried to delete those we don't want using Parameters -> Biblio framework (MARC structure) but when we get back to the Add Biblio screen, it still displays all the fields and subfields that we do not want and this is too cumbersome for data entry. Please assist us in this regard.
Regards, Douglas _______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
participants (2)
-
Betsy Law -
Mbangi Mlandeli Douglas