@@ -, +, @@ image --------- (e.g. The road to character / David Brooks.) -- I imported from the Library of Congress via z39.50 the first one must just be an ISBN number! -- I removed the '(hardcover: acidfree paper)' from the first. -- I took the second 020 field and changed 020$z to 020$a -- There should be a readometer image, but it will be broken. -- Notice the ISBN line has "#############; ..." This could also be attained by just putting two semi-colon separated ISBN's on the first 020$a. -- readometer image appears. YAY! --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -1632,7 +1632,7 @@ function parseIDBJSON( json ) { if(json.total_results > 0 && json.book.rating > 0){ var isbn = $(".isbn:last").text().split(" ")[1]; - isbn = isbn.replace(/-/, ''); + isbn = isbn.replace(/\W+/g, ''); [% IF ( IDreamBooksReadometer ) %] $(".title").append(''+json.book.title+_('); --