@@ -, +, @@ - item-level_itypes => 'specific item' - noItemTypeImages => 'Show' an item type and associate it with an icon an item to it that has an item type with an icon Staff interface. Notice that in the 'Item type' column of the 'Holdings' tab instead of seeing the icon associated with the item type of each item you get the default 'broken image URL' image of your web browser [*]. [*] In non-Debian package installs, the 'href' property of the item type icon's tag should start with '/opac-tmpl/bootstrap/itemtypeimg' The item type icon should now be displayed correctly. [*] KTD and Koha Sandboxes users: To verify the patch has worked, you should right-click on the item type icon and click 'Inspect: the 'href' property of the tag should now start with: '/intranet-tmpl/prog/img/itemtypeimg' --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -405,8 +405,8 @@ [% IF ( item_level_itypes ) %] [% SET itemtype = item.itemtype %] - [% IF !noItemTypeImages && itemtype.image_location %] - [% itemtype.translated_description | html %] + [% IF !noItemTypeImages && itemtype.image_location('intranet') %] + [% itemtype.translated_description | html %] [% END %] [% itemtype.translated_description | html %] --