• Hi great plugin and works really well, the only problem is on mobile the logo is blurry, we’ve tried different sizes but the same problem.

    Do you
    1. have a way to add SVG?
    2. add retina logo?
    3. Have recommended dimensions?

    Thanks for the help

Viewing 1 replies (of 1 total)
  • Hi
    The logo on the email has a hook to modify his attributes.

    <?php
    function timersys_header_logo_attr($attrs = []) {
    	
    	$attrs['style'] = 'max-width:100%;';
    	$attrs['width'] = '500px';
    
    	return $attrs;
    }
    add_filter('mailtpl/templates/header_logo_attr', 'timersys_header_logo_attr');

    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘Retina logo’ is closed to new replies.