Lee Jones
Forum Replies Created
-
Forum: Plugins
In reply to: [WebLibrarian] How to contribute functionality to this pluginI don’t suppose you would be willing to add hooks and filters to your plugin?
Forum: Plugins
In reply to: [WebLibrarian] Pulling covers from Open Library instead of nothumb.pngAh, that. I couldn’t find any hooks in this plugin, so I added a style directly. I edited front.css like below. Note that I haven’t bothered doing much more, so even the “item details” page gets cut into columns.
@media all and (max-width: 699px) { display: table; } @media all and (max-width: 1099px) and (min-width: 700px) { .weblib-item-content-block, .weblib-item-table { -webkit-column-count: 2; /* Chrome, Safari, Opera */ -moz-column-count: 2; /* Firefox */ column-count: 2; } } @media all and (max-width: 1499px) and (min-width: 1100px) { .weblib-item-content-block, .weblib-item-table { -webkit-column-count: 3; /* Chrome, Safari, Opera */ -moz-column-count: 3; /* Firefox */ column-count: 3; } } @media all and (min-width: 1500px) { .weblib-item-content-block, .weblib-item-table { -webkit-column-count: 4; /* Chrome, Safari, Opera */ -moz-column-count: 4; /* Firefox */ column-count: 4; } }
Forum: Plugins
In reply to: [WebLibrarian] Collection TypesI suppose we could use the category field for that, right? I’m not sure if I would be interested in doing this myself, but that’s where I’d look. Personally, I’m likely to work on filling in missing data fields in the collection and streamlining the circulation process a bit…
Forum: Plugins
In reply to: [WebLibrarian] Tabular displayI did something similar with columns (I didn’t want to parse with an “each()” loop). You can inspect the elements on my landing page (still a work in progress) at library dot cypresschurch dot net. https://library.cypresschurch.net/
Forum: Plugins
In reply to: [WebLibrarian] can I delete the "no image" sign?I struggled with this and decided to pull missing covers from Open Library. I’m also considering downloading the cover from Open Library and updating the actual circulation record, but haven’t tried that yet. Anybody else done that?