Viewing 2 replies - 16 through 17 (of 17 total)
  • @elliekennard

    Sorry – yes a type. Code would be sometging like this: (untested)

    function s2_email_filter( $message ) {
    	return str_replace( 'https://www.example.com', 'https://www.example.com', $message );
    }
    
    add_filter( 's2_html_email', 's2_email_filter' );
    add_filter( 's2_plain_email', 's2_email_filter' );
    add_filter( 's2_digest_email', 's2_email_filter' );

    Has anyone tested this? I see it’s similar to another person’s from about a year ago and the API recommendation is a little different. That one is function https_to_http( $content ).

    I’m having this problem just pop up in Subscribe2 HTML. I’ve used this for quite a number of years.

    Another quirk is that I’m unable to send any preview emails. The regular email is a weekly digest. Any help is appreciated.

    Thanks.

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Link says https when my site is only http – how to fix that?’ is closed to new replies.