Replies: 0
Hi, love your plugin and thank you for providing this at no cost. Just a quick question, I need to serve just ONE page via http://, so I added this to my child theme’s functions.php:
function rsssl_exclude_http_url($html) {
$html = str_replace(“https://sng.news/feed/SNG-Top-Alexa”, “http://sng.news/feed/SNG-Top-Alexa”, $html);
return $html;
}
add_filter(“rsssl_fixer_output”,”rsssl_exclude_http_url”);
as per a forum post in which you addressed dealing with this via the mixed content fixer. But I still can’t get this page to stop redirecting to https:// and Amazon’s Alexa flash briefing skill apparently doesn’t like or recognize Let’s Encrypt certs. Is this simply not going to work no matter what I do, or is there another way to do this? It’s clearly a problem with Amazon vs. the cert, but just trying to work around it somehow. Thanks for any info you can provide.