Great slider, see comments for SSL fix
-
This is currently my go-to slider plugin for my wordpress websites. Easy to use, looks good.
Quick note to the plugin devs – there’s a line in shortcodes.php that will cause errors with SSL-enabled websites. The current line is:
wp_enqueue_style(‘OpenSans’,”https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700″,array(),FRS_VERSION);
But should be:
wp_enqueue_style(‘OpenSans’,”//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700″,array(),FRS_VERSION);
Having http: in that line of code causes a mixed content warning error (chrome, firefox) or a ‘show secure content only’ message (IE) – either way, the browser will not load the font. Kill the http: bit in the next version, let google serve up the content via https.
- The topic ‘Great slider, see comments for SSL fix’ is closed to new replies.