Replies: 0
Hello there!
In current plugin version, there is an issue regarding retina logo display.
Instead of displaying retina logo in correct dimensions, the logo appears blurred and with incorrect dimensions.
To fix this there needs to be following code modification:
file:
maintenance/load/functions.php line 280 and 281
modify line like this:
$logo = wp_get_attachment_image_src( $mt_options['logo'], 'full', true);
$retina_logo = wp_get_attachment_image_src( $mt_options['retina_logo'], 'full', true);
Please implement this solution in upcoming plugin version.
Thanks