Smooth Slider - Version 2.7.1

Version Description

If you have Smooth Slider 2.6 or plus, kindly update to 2.6.3 for proper height calcualtion for responsiveness.

= Before Upgrading =

  • Note the Title and Content fonts on your old Smooth Slider.
  • Go to 'Settings' panel and 'Save Changes'.
  • Recheck the Slider Title, Post Title and the Slider Content fonts on the Settings Panel.

Get older versions

Download this release

Release Info

Developer internet techies
Plugin Icon 128x128 Smooth Slider
Version 2.7.1
Comparing to
See all releases

Code changes from version 2.7 to 2.7.1

readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: internet techies, slidervilla
3
  Tags: slider, slideshow, wordpress slider, content slider, posts slider,image slider, responsive slideshow, image Rotator, jquery slider, Photo Slider, nivo slider, slider plugin, javascript slider, coin slider, responsive slider, featured-content-slider, Horizontal slider, carousel slider, wp slider, vertical slider, best slider plugin, content slideshow, javascript slideshow, slideshow manager, slideshow plugin, image slideshow, jquery slideshow, wordpress slideshow, vertical slides, responsive, nivoslider, flex slider, coinslider, carousel, post, posts, plugin, slider widget, widget slider, widget slideshow, widget, widgets, seo, wordpress seo, media, page, slide, slides
4
  Donate link: http://www.clickonf5.org/go/smooth-slider/
5
  Requires at least: 3.0
6
- Tested up to: 4.2.2
7
- Stable tag: 2.7
8
  License: GPLv2 or later
9
 
10
  Most Popular Responsive WordPress Slider for Featured Content, Videos and Media Images
@@ -152,7 +152,11 @@ Check the other FAQs on Smooth [Slider Documetation on SliderVilla](http://guide
152
 
153
  == Changelog ==
154
 
155
- Version 2.7 (07/18/2014)
 
 
 
 
156
 
157
  1. Fix: SQL query fixes and debug notices
158
 
3
  Tags: slider, slideshow, wordpress slider, content slider, posts slider,image slider, responsive slideshow, image Rotator, jquery slider, Photo Slider, nivo slider, slider plugin, javascript slider, coin slider, responsive slider, featured-content-slider, Horizontal slider, carousel slider, wp slider, vertical slider, best slider plugin, content slideshow, javascript slideshow, slideshow manager, slideshow plugin, image slideshow, jquery slideshow, wordpress slideshow, vertical slides, responsive, nivoslider, flex slider, coinslider, carousel, post, posts, plugin, slider widget, widget slider, widget slideshow, widget, widgets, seo, wordpress seo, media, page, slide, slides
4
  Donate link: http://www.clickonf5.org/go/smooth-slider/
5
  Requires at least: 3.0
6
+ Tested up to: 4.3
7
+ Stable tag: 2.7.1
8
  License: GPLv2 or later
9
 
10
  Most Popular Responsive WordPress Slider for Featured Content, Videos and Media Images
152
 
153
  == Changelog ==
154
 
155
+ Version 2.7.1 (08/21/2015)
156
+
157
+ 1. Fix: Notice for WP_Widget constructor call
158
+
159
+ Version 2.7 (07/18/2015)
160
 
161
  1. Fix: SQL query fixes and debug notices
162
 
slider_versions/widgets_1.php CHANGED
@@ -2,7 +2,7 @@
2
  class Smooth_Slider_Simple_Widget extends WP_Widget {
3
  function Smooth_Slider_Simple_Widget() {
4
  $widget_options = array('classname' => 'sslider_wclass', 'description' => 'Insert Smooth Slider' );
5
- $this->WP_Widget('sslider_wid', 'Smooth Slider - Simple', $widget_options);
6
  }
7
 
8
  function widget($args, $instance) {
@@ -50,4 +50,4 @@ class Smooth_Slider_Simple_Widget extends WP_Widget {
50
  }
51
  }
52
  add_action( 'widgets_init', create_function('', 'return register_widget("Smooth_Slider_Simple_Widget");') );
53
- ?>
2
  class Smooth_Slider_Simple_Widget extends WP_Widget {
3
  function Smooth_Slider_Simple_Widget() {
4
  $widget_options = array('classname' => 'sslider_wclass', 'description' => 'Insert Smooth Slider' );
5
+ parent::__construct('sslider_wid', 'Smooth Slider - Simple', $widget_options);
6
  }
7
 
8
  function widget($args, $instance) {
50
  }
51
  }
52
  add_action( 'widgets_init', create_function('', 'return register_widget("Smooth_Slider_Simple_Widget");') );
53
+ ?>
smooth-slider.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Smooth Slider
4
  Plugin URI: http://slidervilla.com/smooth-slider/
5
  Description: Smooth slider adds a responsive featured content on image slider using shortcode, widget and template tags. Create and embed featured content slider, recent post slider, category slider in less than 60 seconds.
6
- Version: 2.7
7
  Author: SliderVilla
8
  Author URI: http://slidervilla.com/
9
  Wordpress version supported: 2.9 and above
@@ -30,12 +30,12 @@ Wordpress version supported: 2.9 and above
30
  //defined global variables and constants here
31
  global $smooth_slider,$default_slider,$smooth_db_version,$default_smooth_slider_settings;
32
  $smooth_slider = get_option('smooth_slider_options');
33
- $smooth_db_version='2.7'; //current version of smooth slider database
34
  define('SLIDER_TABLE','smooth_slider'); //Slider TABLE NAME
35
  define('PREV_SLIDER_TABLE','slider'); //Slider TABLE NAME
36
  define('SLIDER_META','smooth_slider_meta'); //Meta TABLE NAME
37
  define('SLIDER_POST_META','smooth_slider_postmeta'); //Meta TABLE NAME
38
- define("SMOOTH_SLIDER_VER","2.7",false);//Current Version of Smooth Slider
39
  if ( ! defined( 'SMOOTH_SLIDER_PLUGIN_BASENAME' ) )
40
  define( 'SMOOTH_SLIDER_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
41
  if ( ! defined( 'SMOOTH_SLIDER_CSS_DIR' ) ){
@@ -599,7 +599,7 @@ add_action('delete_attachment','delete_from_slider_table');
599
 
600
  function smooth_slider_plugin_url( $path = '' ) {
601
  global $wp_version;
602
- if ( version_compare( $wp_version, '2.8', '<' ) ) { // Using WordPress 2.7
603
  $folder = dirname( plugin_basename( __FILE__ ) );
604
  if ( '.' != $folder )
605
  $path = path_join( ltrim( $folder, '/' ), $path );
3
  Plugin Name: Smooth Slider
4
  Plugin URI: http://slidervilla.com/smooth-slider/
5
  Description: Smooth slider adds a responsive featured content on image slider using shortcode, widget and template tags. Create and embed featured content slider, recent post slider, category slider in less than 60 seconds.
6
+ Version: 2.7.1
7
  Author: SliderVilla
8
  Author URI: http://slidervilla.com/
9
  Wordpress version supported: 2.9 and above
30
  //defined global variables and constants here
31
  global $smooth_slider,$default_slider,$smooth_db_version,$default_smooth_slider_settings;
32
  $smooth_slider = get_option('smooth_slider_options');
33
+ $smooth_db_version='2.7.1'; //current version of smooth slider database
34
  define('SLIDER_TABLE','smooth_slider'); //Slider TABLE NAME
35
  define('PREV_SLIDER_TABLE','slider'); //Slider TABLE NAME
36
  define('SLIDER_META','smooth_slider_meta'); //Meta TABLE NAME
37
  define('SLIDER_POST_META','smooth_slider_postmeta'); //Meta TABLE NAME
38
+ define("SMOOTH_SLIDER_VER","2.7.1",false);//Current Version of Smooth Slider
39
  if ( ! defined( 'SMOOTH_SLIDER_PLUGIN_BASENAME' ) )
40
  define( 'SMOOTH_SLIDER_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
41
  if ( ! defined( 'SMOOTH_SLIDER_CSS_DIR' ) ){
599
 
600
  function smooth_slider_plugin_url( $path = '' ) {
601
  global $wp_version;
602
+ if ( version_compare( $wp_version, '2.8', '<' ) ) { // Using WordPress 2.7.1
603
  $folder = dirname( plugin_basename( __FILE__ ) );
604
  if ( '.' != $folder )
605
  $path = path_join( ltrim( $folder, '/' ), $path );