Re: [Koha] Book cover display from Amazon india koha 18.5

2019-05-10 Thread Indranil Das Gupta
Try koha 18.11 for Amazon India support.

Images are mapped to ISBNs. So having the image on the Amazon website is
not a guarantee on display unless your ISBN matches exactly.

On a side note, you can always use the LocalImages facility for situations
like this.

Cheers
Indranil Das Gupta
L2C2 Technologies



On Fri 10 May, 2019, 4:21 PM Yatheesh lis,  wrote:

> Dear all,
>
> Koha 18.5  unable show few Book cover even these cover available on Amazon
> website special indian books.
>
> There is no option available (Amazon india)
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Book Cover

2018-03-08 Thread Arturo Longoria
Hi Victoria,

There is no option within Koha to prioritize locally uploaded cover art, but 
our library has the same issue, so I wrote some JavaScript and placed it in the 
OPACUserJS system preference to hide any other cover art from Google if there 
is local cover art. I believe this should work to also hide Amazon images, but 
I haven't tested that. This does not block the other cover art from loading, 
but it does quickly hide it for a better display.

The code I use is here: https://pastebin.com/F2nQdHaz


Arturo Longoria
Reference Librarian/Web Manager
Texas State Law Library
www.sll.texas.gov

-Original Message-
From: Koha [mailto:koha-boun...@lists.katipo.co.nz] On Behalf Of Ma. Victoria 
H. Silva-Manuel
Sent: Wednesday, March 07, 2018 20:12
To: koha 
Subject: [Koha] Book Cover

Hi.

Is there a way to show one cover image only. I mean, if I had uploaded a local 
image, the image from Amazon or Google won't show anymore for a particular 
book/record.

Thank you.

--
Ma. Victoria H. Silva-Manuel
Registered Librarian, 3892
___
Koha mailing list  http://koha-community.org Koha@lists.katipo.co.nz 
https://lists.katipo.co.nz/mailman/listinfo/koha
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Book Cover

2018-03-07 Thread Katrin Fischer

Hi Victoria,

there is currently no option in configuration to prioritize cover 
sources for display.


Maybe it would be possible to solve it with some custom Javascript, but 
haven't investigated.


Katrin

On 08.03.2018 03:12, Ma. Victoria H. Silva-Manuel wrote:

Hi.

Is there a way to show one cover image only. I mean, if I had uploaded a
local image, the image from Amazon or Google won't show anymore for a
particular book/record.

Thank you.



___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Book Cover

2017-12-07 Thread Pedro Amorim
Hello Victoria,

Try pasting this into OPACUserJS *syspref*:

function remove_amazon_message() {
  $("span:contains('"+NO_AMAZON_IMAGE+"')").each(function(i){
$(this).hide();
  })
}

$(window).load(function() {
remove_amazon_message();
});

*--*

This is what I'm using and works for every language.

Have a good one,

Pedro Amorim

On 7 December 2017 at 01:18, Ma. Victoria H. Silva-Manuel <
mavicsi...@gmail.com> wrote:

> hi.
> is there a way to show only one book cover per record?
> i enable amazon and local cover images and in my opac search i can see the
> cover from amazon and "no cover image available"
> hope someone can help.
> thanks.
>
> --
> Ma. Victoria H. Silva-Manuel
> Registered Librarian, 3892
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha