Title: Fix &#8211; Support for https
Last modified: August 22, 2016

---

# Fix – Support for https

 *  [Diego](https://wordpress.org/support/users/daigo75/)
 * (@daigo75)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/fix-support-for-https/)
 * The widget rendered by the plugin uses only `http`, and that generates an error
   if the WordPress site uses `https`.
 * **How to fix the bug**
 * In file `template.php`, replace this code:
    `<form action="http://feedburner.
   google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.
   open('http://feedburner.google.com/fb/a/mailverify?uri=<?php echo $feed; ?>','
   popupwindow', 'scrollbars=yes,width=550,height=520');return true">`
 * with this code
    `<form action="//feedburner.google.com/fb/a/mailverify" method
   ="post" target="popupwindow" onsubmit="window.open('//feedburner.google.com/fb/
   a/mailverify?uri=<?php echo $feed; ?>', 'popupwindow', 'scrollbars=yes,width=
   550,height=520');return true">`
 * Basically, the fix consists in removing the explicit `http`, so that the Feedburner
   URL depends on the protocol used on the page.
 * Tested on our site, [http://aelia.co](http://aelia.co), where we use https on
   the checkout page.
 * **Notes**
    - The fix should be applied to backend pages as well, but it’s not as critical
      there.
    - I could not find a Github repository to contribute to. If there is one, please
      let me know and I will send you a pull request. Thanks.
 * [https://wordpress.org/plugins/feedburner-email-subscription/](https://wordpress.org/plugins/feedburner-email-subscription/)

The topic ‘Fix – Support for https’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/feedburner-email-subscription_fffcfc.
   svg)
 * [Feedburner Email Subscription](https://wordpress.org/plugins/feedburner-email-subscription/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/feedburner-email-subscription/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/feedburner-email-subscription/)
 * [Active Topics](https://wordpress.org/support/plugin/feedburner-email-subscription/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/feedburner-email-subscription/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/feedburner-email-subscription/reviews/)

## Tags

 * [HTTPS](https://wordpress.org/support/topic-tag/https/)
 * [SSL](https://wordpress.org/support/topic-tag/ssl/)

 * 0 replies
 * 1 participant
 * Last reply from: [Diego](https://wordpress.org/support/users/daigo75/)
 * Last activity: [11 years, 10 months ago](https://wordpress.org/support/topic/fix-support-for-https/)
 * Status: not resolved