Hi, thanks for an awesome add on to Coppermine :)
I have it installed on my site, and I managed to make cpmFetch fetch info from two different installations of Cpm ;D
But what I want to know now is: Can I make cpmFetch display minithumbs (as made with the modpack from Stramm) instead of regular thumbs?
Is it something I'd have to edit in cpmFetch itself or is it something I'd put into the code I put on my site to display the pics?
Here's the code I'm using to fetch images now:
<?php
$objCpm = new cpm("./cpmfetch/cpmfetch_config.php");
$options = array('imagewidth' => '80', 'windowtarget' => '_blank', 'imagelink' => 'album');
$objCpm->cpm_viewLastAddedMedia(2,2,$options);
I know that I can always decrease the "imagewidth" value, but that makes the pictures look all resized and blurred...
HI.
easy.
Mini thumbs have the prefix _mini.
So, we need to change "thumb" into "mini" in cpmfetch.php at line 1546 and cpmfetchdao 266
Now, when you sort by thumbs, the minis are displayed.
regards, Dietmar