Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi.
    The images are always blocked in many emails (Gmail, Hotmail, etc), you just have to click on “show images” or add the email to the list of contacts.

    Regards

    Thread Starter robkamofficial

    (@robkamofficial)

    But is there any way to remove the link?

    Hi.
    If you want to remove the image or text, you can do it from email header section in the plugin:

    View post on imgur.com

    If you want to change the link on the logo, you must use a filter :

    add_filter('mailtpl/templates/header_logo_url','custom_header_logo_url', 10, 1);
    
    function custom_header_logo_url($url) {
    
    	$url = 'https://yourweb.com/';
    	return $url;
    }

    But if you want to remove the link, it can not currently.

    Regards

    Thread Starter robkamofficial

    (@robkamofficial)

    Thanks. This really helps out!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove link from header image’ is closed to new replies.