@@ -, +, @@ results 1 - You will need a valid library RBDigital account 2 - Fill in the RecordedBooks system preferences 3 - Open the catalog, perform a search with RBDigtal resuls, 'love' often works 4 - Click to the results 5 - Note if not logged you don't see availability 6 - Log in with a patron with no email, note you do not see any notice that you must register your email with RBDigital 7 - Apply patch 8 - Reload results, you now see a notice to register with rbdigital, do so unless you already have an account 9 - Add your associated email to the koha account --- .../opac-tmpl/bootstrap/en/modules/opac-recordedbooks-search.tt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-recordedbooks-search.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-recordedbooks-search.tt @@ -26,6 +26,10 @@

RecordedBooks search for '[% q | html %]'

+ [% UNLESS ( loggedinusername ) %] + + [% END %] + @@ -81,7 +85,6 @@ function search( page ) { for ( var i = 0; data.items[i]; i++ ) { var prod = data.items[i]; var results = []; - results.push( '' ); results.push( '' ); @@ -154,6 +157,9 @@ $( document ).ready( function() { KOHA.RecordedBooks.with_account_details("#breadcrumbs", function() { search( 1 ); }); + if( KOHA.RecordedBooks.is_identified() == 'false' ){ + $("#breadcrumbs").before('

To see availability you must register for RecordedBooks using your cardnumber and the email associated with your Koha account

'); + } [% ELSE %] search( 1 ); [% END %] --