"collection" field not imported from Sente
This discussion was created from comments split from: Error report 1769117688.
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
Bernd
Thanks
What would be a good place to import it? Extra? Just a tag?
As you note, Zotero doesn't allow you to add custom fields, to this would need to be within Zotero's existing possibilities.
Kindly, Bernd
https://www.zotero.org/support/zotero_data
2. Open the file with a text editor -- ideally a good editor like Notepad++ or TextWrangler, but regular Notepad or TextEdit will do.
3. Between lines 274 and 275: https://github.com/zotero/translators/blob/master/BibTeX.js#L274 insert this code:
} else if (field == "collection_description") {
item.tags.push(value);
(Copy & paste them to be sure and make sure you don't change any existing lines).
4. Save the file to the same location (in TextEdit, make sure to save in plaintext mode) and import again. You should get a "privat" tag.
Note that anything you break while trying this is easily reversible.
Kind regards from Germany,
b
Thanks!