08/22/2017 at 11:54 am
#432872
Keymaster
@ Trevor
Ok, open the card.php file found in this folder:
../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 to this:
$entry->getImage( array(
'image' => $atts['image'] ,
'height' => $atts['image_height'] ,
'width' => $atts['image_width'] ,
'quality' => 100,
'fallback' => array(
'type' => $atts['image_fallback'] ,
'string' => $atts['str_image']
)
)
);
The difference being the quality setting. Hope that helps!
