Title: Plug-in Giving https / mixed content warnings
Last modified: October 12, 2020

---

# Plug-in Giving https / mixed content warnings

 *  Resolved [bobmane2](https://wordpress.org/support/users/bobmane2/)
 * (@bobmane2)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/smooth-scroll-page-up-down-buttons-giving-https/)
 * We tested it. Only with this plug-in turned on do we get https / mixed content
   warnings. How to fix?
    -  This topic was modified 5 years, 7 months ago by [bobmane2](https://wordpress.org/support/users/bobmane2/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fsmooth-scroll-page-up-down-buttons-giving-https%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Author [Senff – a11n](https://wordpress.org/support/users/senff/)
 * (@senff)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/smooth-scroll-page-up-down-buttons-giving-https/#post-13522501)
 * For some reason, the path to the images that make up the buttons, contains the
   full, absolute URL (with http) on your end.
 * This is how the original code of my plugin calls these buttons:
 *     ```
       .page-scroll-buttons button.one-page-down {background-image:url('../img/spsb-arrow-down.png');}
       .page-scroll-buttons button.one-page-up {background-image:url('../img/spsb-arrow-up.png');}
       .page-scroll-buttons button.all-the-way-to-top {background-image:url('../img/spsb-arrow-top.png');}
       ```
   
 * As you can see, it doesn’t contain the domain name or path to your WordPress 
   install.
 * This is how the code is on your site:
 *     ```
       .page-scroll-buttons button.one-page-down {background-image: url(http://kagimedia.com/wp-content/plugins/smooth-page-scroll-updown-buttons/assets/css/../img/spsb-arrow-down.png);}
       .page-scroll-buttons button.one-page-up {background-image: url(http://kagimedia.com/wp-content/plugins/smooth-page-scroll-updown-buttons/assets/css/../img/spsb-arrow-up.png);}
       .page-scroll-buttons button.all-the-way-to-top {background-image: url(http://kagimedia.com/wp-content/plugins/smooth-page-scroll-updown-buttons/assets/css/../img/spsb-arrow-top.png);}
       ```
   
 * That appears to include the entire path, starting with `http://kagimedia.com/`,
   and that is what’s causing the mixed content warnings.
 * I can’t say if this is something you changed yourself in the code, or if that’s
   coming from a plugin (perhaps a minification plugin?).
 * If you changed it yourself, make sure it contains `https://kagimedia.com/` (instead
   of `http://kagimedia.com/`).
    If a plugin changed this, you’ll need to check 
   which plugin that is, and if you can change the settings in there.
 *  Thread Starter [bobmane2](https://wordpress.org/support/users/bobmane2/)
 * (@bobmane2)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/smooth-scroll-page-up-down-buttons-giving-https/#post-13524245)
 * Thanks…turns out it was another plug in casing some sort of conflict. after update
   issue was resolved.

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

The topic ‘Plug-in Giving https / mixed content warnings’ is closed to new replies.

 * ![](https://ps.w.org/smooth-page-scroll-updown-buttons/assets/icon-256x256.png?
   rev=1019545)
 * [Smooth Page Scroll Up/Down Buttons](https://wordpress.org/plugins/smooth-page-scroll-updown-buttons/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/smooth-page-scroll-updown-buttons/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/smooth-page-scroll-updown-buttons/)
 * [Active Topics](https://wordpress.org/support/plugin/smooth-page-scroll-updown-buttons/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/smooth-page-scroll-updown-buttons/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/smooth-page-scroll-updown-buttons/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [bobmane2](https://wordpress.org/support/users/bobmane2/)
 * Last activity: [5 years, 7 months ago](https://wordpress.org/support/topic/smooth-scroll-page-up-down-buttons-giving-https/#post-13524245)
 * Status: resolved