@ Eve
1. Tile Plus will automatically create images from the source image that are
100px x 130px. It does not use the pre-cached image sizes created when you add a new image. You will have to pre-process the image, scale and crop. If you upload a pre-cropped image using the same ratio (10:13) that would work too. For example, images with the dimension of 200px x 260px or 110px x 143px. Here’s the math…
( width / height ) * new-height = new-width
OR
( height / width ) * new-width = new-height
2. This couldn’t be done without digging into the PHP of the template.
3. You need to edit the card-single.php file found here:
../wp-content/plugins/connections-tile-plus/
Look for this:
$entry->getImage( array(
'image' => $atts['image'] ,
'height' => $atts['image_height'] ,
'width' => $atts['image_width'] ,
'fallback' => array(
'type' => $atts['image_fallback'] ,
'string' => $atts['str_image']
)
)
);
Change it to:
$entry->getImage( array(
'image' => 'logo'
)
);
Now, it’ll use the logo size defined on the settings page.
4. The default limit is 20 per page. Since you have three in a row, there would be a blank spot. Increase the page limit to 21 by adding page_limit=21 to the shortcode.
Hope that helps!
