Bug 38710 - OPAC local cover images are shown on the left in the search results instead of on the right
Summary: OPAC local cover images are shown on the left in the search results instead o...
Status: RESOLVED INVALID
Alias: None
Product: Koha
Classification: Unclassified
Component: OPAC (show other bugs)
Version: 24.11
Hardware: All All
: P5 - low minor
Assignee: Owen Leonard
QA Contact: Testopia
URL:
Keywords:
Depends on: 26933
Blocks:
  Show dependency treegraph
 
Reported: 2024-12-15 17:45 UTC by int
Modified: 2024-12-17 15:04 UTC (History)
1 user (show)

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description int 2024-12-15 17:45:00 UTC
After upgrading to Koha 24.11 local cover images are display on the left in their own column. The HTML structure is:
<tr>
   <td class="selectcol">...</td>
   <td class="numcol">...</td>
   <td class="itypecol">...</td>
   <td class="covercol">...</td> <-- cover image!
   <td class="bibliocol">
     <div id="title_summary_63947" class="title_summary">...</div>
   </td>
</tr>
see https://katalog.bibliothekderfreien.de/cgi-bin/koha/opac-search.pl?idx=&q=Emma+Goldman&weight_search=1

Correct would be on the right as part of the bibliocol-column. The correct HTML structure is:
<tr>
   <td class="selectcol">...</td>
   <td class="numcol">...</td>
   <td class="itypecol">...</td>
   <td class="bibliocol">
     <div class="coverimages coverslides...">...</div> <-- cover image!
     <span class="Z3988" ...>...</span>
     <div id="title_summary_74324" class="title_summary">...</div>
   </td>
</tr>
see entry 5 of https://opac.monaliesa.de/cgi-bin/koha/opac-search.pl?idx=&q=test&weight_search=1
MonaLiesa gets the cover images from OpenLibrary (not local as above) and I don't know its Koha version(, in the first link above it is Koha 24.11). But they are rendered correctly there.
Comment 1 Owen Leonard 2024-12-16 12:54:07 UTC
This is not a bug, it's a change in the page's design.
Comment 2 Katrin Fischer 2024-12-17 10:38:02 UTC
(In reply to Owen Leonard from comment #1)
> This is not a bug, it's a change in the page's design.

Hi Owen, do you remember which bug changed this behavior so we can link to it?
I think it's OK, but might have come as a bit of a surprise to some.
Comment 3 Owen Leonard 2024-12-17 15:04:43 UTC
Yes: Bug 26933