| Summary: | Add ability to hide Non-public Notes from Circulation Page | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Kelly McElligott <kelly> |
| Component: | Staff interface | Assignee: | David Roberts <david.roberts> |
| Status: | CLOSED WORKSFORME | QA Contact: | Testopia <testopia> |
| Severity: | enhancement | ||
| Priority: | P5 - low | CC: | david.roberts, gmcharlt, jheltibridle, kebliss |
| Version: | 17.11 | ||
| Hardware: | All | ||
| OS: | All | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
|
Description
Kelly McElligott
2018-09-20 16:54:21 UTC
Both the public and non-public notes currently appear as part of the title field in these tables, which seems less than ideal. I also don't see itemnotes in the column configuration - it looks like the bug quoted just added some classes to the data. I'm not sure I understand this issue - maybe it is no longer a problem? Yes, I think it would require moving the info into a new column - but more columns will take up more space. I wonder if the CSS solution might be enough here?
#circ_circulation .item-note-nonpublic { display:none; }
Our library would still like to be able to hide notes from the issues table. Many of our nonpublic notes are not used at checkout, and having them appear in red on the issues table gives the impression that the notes are something that needs to be acted upon when they are not. (In reply to Juliet Heltibridle from comment #4) > Our library would still like to be able to hide notes from the issues table. > Many of our nonpublic notes are not used at checkout, and having them appear > in red on the issues table gives the impression that the notes are something > that needs to be acted upon when they are not. Hi Juliet, have you tried the CSS from comment#3 ? You just need to paste it into IntranetUserCSS. I did, thank you! Except I only applied it to the issues table. It seems to be working how I hoped!
#issues-table .item-note-nonpublic { display:none; }
(In reply to Juliet Heltibridle from comment #6) > I did, thank you! Except I only applied it to the issues table. It seems to > be working how I hoped! > > #issues-table .item-note-nonpublic { display:none; } Excellent :) I think this was resolved with the addition of the CSS classes. Please re-open if I missed something! |