@@ -, +, @@ following errors: use the browsers dev tools you should be able to inscept each error message and see that it is now wrapped in a with an ID. --- .../opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -60,39 +60,39 @@

[% IF ( circ_error_UNKNOWN_BARCODE ) %] - The system does not recognize this barcode. + The system does not recognize this barcode. [% ELSIF ( circ_error_max_loans_allowed ) %] - You have checked out too many items and can't check out any more. + You have checked out too many items and can't check out any more. [% ELSIF ( circ_error_ISSUED_TO_ANOTHER ) %] - This item is checked out to someone else. + This item is checked out to someone else. [% ELSIF ( circ_error_NO_MORE_RENEWALS ) %] - You cannot renew this item again. + You cannot renew this item again. [% ELSIF ( circ_error_NOT_FOR_LOAN ) %] - This item is not for loan. + This item is not for loan. [% ELSIF ( circ_error_DEBT ) %] - You owe the library [% DEBT | $Price %] and cannot check out. + You owe the library [% DEBT | $Price %] and cannot check out. [% ELSIF ( circ_error_WTHDRAWN ) %] - This item has been withdrawn from the collection. + This item has been withdrawn from the collection. [% ELSIF ( circ_error_RESTRICTED ) %] - This item is restricted. + This item is restricted. [% ELSIF ( circ_error_RESERVED ) %] - This item is on hold for another patron. + This item is on hold for another patron. [% ELSIF ( circ_error_ITEMNOTSAMEBRANCH ) %] - This item belongs to another branch. + This item belongs to another branch. [% ELSIF ( circ_error_EXPIRED ) %] - Your account has expired. + Your account has expired. [% ELSIF ( circ_error_DEBARRED ) %] - Your account has been suspended. + Your account has been suspended. [% ELSIF ( circ_error_CARD_LOST ) %] - This card has been declared lost. + This card has been declared lost. [% ELSIF ( circ_error_GNA ) %] - Your contact information seems to be incomplete. + Your contact information seems to be incomplete. [% ELSIF ( circ_error_INVALID_DATE ) %] - Due date is not valid. + Due date is not valid. [% ELSIF ( circ_error_ADDITIONAL_MATERIALS ) %] - Item must be checked out at a circulation desk. + Item must be checked out at a circulation desk. [% END %] - Please see a member of the library staff. + Please see a member of the library staff.

[% IF ( returnitem && Koha.Preference('SCOAllowCheckin') ) %] --