Bug 21388 - Add ability to hide Non-public Notes from Circulation Page
Summary: Add ability to hide Non-public Notes from Circulation Page
Status: RESOLVED WORKSFORME
Alias: None
Product: Koha
Classification: Unclassified
Component: Staff interface (show other bugs)
Version: 17.11
Hardware: All All
: P5 - low enhancement (vote)
Assignee: David Roberts
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-09-20 16:54 UTC by Kelly McElligott
Modified: 2023-10-02 22:47 UTC (History)
4 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kelly McElligott 2018-09-20 16:54:21 UTC
In a previous bug 19806, non-public notes were requested for the library to have the ability to hide this field (non public note/ itemnotes) in checkin tables.  This field "itemnotes" was added to the Configure Columns to allow a library to choose or not choose to have this field visible.  This feature would also be nice in the issues (circulation) screen.  When a staff member is checking out an item to the patron, they might not necessarily need to see the non-public note during checking out in addition to checking in.
Comment 1 David Roberts 2020-05-04 01:23:20 UTC
Both the public and non-public notes currently appear as part of the title field in these tables, which seems less than ideal.
Comment 2 David Roberts 2020-05-04 01:31:15 UTC
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?
Comment 3 Katrin Fischer 2020-05-05 22:09:09 UTC
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; }
Comment 4 Juliet Heltibridle 2023-07-10 22:48:57 UTC
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.
Comment 5 Katrin Fischer 2023-07-16 11:34:29 UTC
(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.
Comment 6 Juliet Heltibridle 2023-07-17 14:14:29 UTC
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; }
Comment 7 Katrin Fischer 2023-07-17 14:29:00 UTC
(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 :)
Comment 8 Katrin Fischer 2023-10-02 22:47:47 UTC
I think this was resolved with the addition of the CSS classes. Please re-open if I missed something!