Ultimate Responsive Image Slider Plugin - Version 3.1.6

Version Description

Download this release

Release Info

Developer weblizar
Plugin Icon 128x128 Ultimate Responsive Image Slider Plugin
Version 3.1.6
Comparing to
See all releases

Code changes from version 3.1.5 to 3.1.6

readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.weblizar.com/
4
  Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
5
  Requires at least: 3.8
6
  Tested up to: 4.9.5
7
- Stable tag: 3.1.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -195,6 +195,7 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
195
 
196
  For more information, see Weblizar(https://weblizar.com/)
197
 
 
198
  V 3.1.5 - update Font-awesome + update bootstrap + update slider pro js and css 1.4.0 + Modify Custom CSS editor + Add new setting - set slide title as file name + update basic font family + Add recommendation and our product page + compatible upto wp 4.9.5
199
  V 3.1.4 - New: range slider for autoplay slider settings + autoplay tips typos fixed +compatible upto wp 4.9.1
200
  V 3.1.3 - Fix: new settings saving issue fixed
4
  Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
5
  Requires at least: 3.8
6
  Tested up to: 4.9.5
7
+ Stable tag: 3.1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
195
 
196
  For more information, see Weblizar(https://weblizar.com/)
197
 
198
+ V 3.1.6 - Custom CSS Editor Fix
199
  V 3.1.5 - update Font-awesome + update bootstrap + update slider pro js and css 1.4.0 + Modify Custom CSS editor + Add new setting - set slide title as file name + update basic font family + Add recommendation and our product page + compatible upto wp 4.9.5
200
  V 3.1.4 - New: range slider for autoplay slider settings + autoplay tips typos fixed +compatible upto wp 4.9.1
201
  V 3.1.3 - Fix: new settings saving issue fixed
ultimate-responsive-image-slider-settings-meta-box.php CHANGED
@@ -7,160 +7,161 @@ $WRIS_Gallery_Settings_Key = "WRIS_Gallery_Settings_".$PostId;
7
  $WRIS_Gallery_Settings = unserialize(get_post_meta( $PostId, $WRIS_Gallery_Settings_Key, true));
8
  if($WRIS_Gallery_Settings['WRIS_L3_Slider_Width'] && $WRIS_Gallery_Settings['WRIS_L3_Slider_Height']) {
9
 
10
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Scale_Mode']))
11
- $WRIS_L3_Slider_Scale_Mode = $WRIS_Gallery_Settings['WRIS_L3_Slider_Scale_Mode'];
12
- else
13
- $WRIS_L3_Slider_Scale_Mode = "cover";
14
-
15
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Auto_Scale']))
16
- $WRIS_L3_Slider_Auto_Scale = $WRIS_Gallery_Settings['WRIS_L3_Slider_Auto_Scale'];
17
- else
18
- $WRIS_L3_Slider_Auto_Scale = 1;
19
-
20
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Slide_Title']))
21
- $WRIS_L3_Slide_Title = $WRIS_Gallery_Settings['WRIS_L3_Slide_Title'];
22
- else
23
- $WRIS_L3_Slide_Title = 1;
24
-
25
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Set_slide_Title']))
26
- $WRIS_L3_Set_slide_Title = $WRIS_Gallery_Settings['WRIS_L3_Set_slide_Title'];
27
- else
28
- $WRIS_L3_Set_slide_Title = 0;
29
-
30
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Auto_Slideshow']))
31
- $WRIS_L3_Auto_Slideshow = $WRIS_Gallery_Settings['WRIS_L3_Auto_Slideshow'];
32
- else
33
- $WRIS_L3_Auto_Slideshow = 1;
34
-
35
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Transition']))
36
- $WRIS_L3_Transition = $WRIS_Gallery_Settings['WRIS_L3_Transition'];
37
- else
38
- $WRIS_L3_Transition = 1;
39
-
40
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Transition_Speed']))
41
- $WRIS_L3_Transition_Speed = $WRIS_Gallery_Settings['WRIS_L3_Transition_Speed'];
42
- else
43
- $WRIS_L3_Transition_Speed = 5000;
44
-
45
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Slide_Order']))
46
- $WRIS_L3_Slide_Order = $WRIS_Gallery_Settings['WRIS_L3_Slide_Order'];
47
- else
48
- $WRIS_L3_Slide_Order = "ASC";
49
-
50
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Slide_Distance']))
51
- $WRIS_L3_Slide_Distance = $WRIS_Gallery_Settings['WRIS_L3_Slide_Distance'];
52
- else
53
- $WRIS_L3_Slide_Distance = 5;
54
-
55
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Sliding_Arrow']))
56
- $WRIS_L3_Sliding_Arrow = $WRIS_Gallery_Settings['WRIS_L3_Sliding_Arrow'];
57
- else
58
- $WRIS_L3_Sliding_Arrow = 1;
59
-
60
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Navigation']))
61
- $WRIS_L3_Slider_Navigation = $WRIS_Gallery_Settings['WRIS_L3_Slider_Navigation'];
62
- else
63
- $WRIS_L3_Slider_Navigation = 1;
64
-
65
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Position']))
66
- $WRIS_L3_Navigation_Position = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Position'];
67
- else
68
- $WRIS_L3_Navigation_Position = "bottom";
69
-
70
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Style']))
71
- $WRIS_L3_Thumbnail_Style = $WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Style'];
72
- else
73
- $WRIS_L3_Thumbnail_Style = "border";
74
-
75
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Width']))
76
- $WRIS_L3_Thumbnail_Width = $WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Width'];
77
- else
78
- $WRIS_L3_Thumbnail_Width = 120;
79
-
80
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Height']))
81
- $WRIS_L3_Thumbnail_Height = $WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Height'];
82
  else
83
- $WRIS_L3_Thumbnail_Height = 120;
84
-
85
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Button']))
86
- $WRIS_L3_Navigation_Button = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Button'];
87
- else
88
- $WRIS_L3_Navigation_Button = 1;
89
-
90
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Width']))
91
- $WRIS_L3_Width = $WRIS_Gallery_Settings['WRIS_L3_Width'];
92
  else
93
- $WRIS_L3_Width = "custom";
94
-
95
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Width']))
96
- $WRIS_L3_Slider_Width = $WRIS_Gallery_Settings['WRIS_L3_Slider_Width'];
97
  else
98
- $WRIS_L3_Slider_Width = 1000;
99
 
100
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Height']))
101
- $WRIS_L3_Height = $WRIS_Gallery_Settings['WRIS_L3_Height'];
102
- else
103
- $WRIS_L3_Height = "custom";
104
-
105
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Height']))
106
- $WRIS_L3_Slider_Height = $WRIS_Gallery_Settings['WRIS_L3_Slider_Height'];
107
- else
108
- $WRIS_L3_Slider_Height = 500;
109
-
110
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Font_Style']))
111
- $WRIS_L3_Font_Style = $WRIS_Gallery_Settings['WRIS_L3_Font_Style'];
112
- else
113
- $WRIS_L3_Font_Style = "Arial";
114
-
115
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Title_Color']))
116
- $WRIS_L3_Title_Color = $WRIS_Gallery_Settings['WRIS_L3_Title_Color'];
117
- else
118
- $WRIS_L3_Title_Color = "#00000";
119
-
120
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Title_BgColor']))
121
- $WRIS_L3_Title_BgColor = $WRIS_Gallery_Settings['WRIS_L3_Title_BgColor'];
122
  else
123
- $WRIS_L3_Title_BgColor = "#FFFFFF";
124
-
125
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Desc_Color']))
126
- $WRIS_L3_Desc_Color = $WRIS_Gallery_Settings['WRIS_L3_Desc_Color'];
127
- else
128
- $WRIS_L3_Desc_Color = "#FFFFFF";
129
-
130
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Desc_BgColor']))
131
- $WRIS_L3_Desc_BgColor = $WRIS_Gallery_Settings['WRIS_L3_Desc_BgColor'];
132
- else
133
- $WRIS_L3_Desc_BgColor = "#00000";
134
-
135
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Color']))
136
- $WRIS_L3_Navigation_Color = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Color'];
137
- else
138
- $WRIS_L3_Navigation_Color = "#FFFFFF";
139
-
140
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Fullscreeen']))
141
- $WRIS_L3_Fullscreeen = $WRIS_Gallery_Settings['WRIS_L3_Fullscreeen'];
142
- else
143
- $WRIS_L3_Fullscreeen = 1;
144
-
145
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Custom_CSS']))
146
- $WRIS_L3_Custom_CSS = $WRIS_Gallery_Settings['WRIS_L3_Custom_CSS'];
147
- else
148
- $WRIS_L3_Custom_CSS = "";
149
-
150
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Bullets_Color']))
151
- $WRIS_L3_Navigation_Bullets_Color = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Bullets_Color'];
152
- else
153
- $WRIS_L3_Navigation_Bullets_Color = "#000000";
154
-
155
- if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Pointer_Color']))
156
- $WRIS_L3_Navigation_Pointer_Color = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Pointer_Color'];
157
- else
158
- $WRIS_L3_Navigation_Pointer_Color = "#000000";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  }
160
  ?>
161
  <script type="text/javascript">
162
- jQuery(document).ready(function(){
163
  var editor = CodeMirror.fromTextArea(document.getElementById("wl-l3-custom-css"), {
 
164
  lineNumbers: true,
165
  styleActiveLine: true,
166
  matchBrackets: true,
7
  $WRIS_Gallery_Settings = unserialize(get_post_meta( $PostId, $WRIS_Gallery_Settings_Key, true));
8
  if($WRIS_Gallery_Settings['WRIS_L3_Slider_Width'] && $WRIS_Gallery_Settings['WRIS_L3_Slider_Height']) {
9
 
10
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Scale_Mode']))
11
+ $WRIS_L3_Slider_Scale_Mode = $WRIS_Gallery_Settings['WRIS_L3_Slider_Scale_Mode'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  else
13
+ $WRIS_L3_Slider_Scale_Mode = "cover";
14
+
15
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Auto_Scale']))
16
+ $WRIS_L3_Slider_Auto_Scale = $WRIS_Gallery_Settings['WRIS_L3_Slider_Auto_Scale'];
 
 
 
 
 
17
  else
18
+ $WRIS_L3_Slider_Auto_Scale = 1;
19
+
20
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Slide_Title']))
21
+ $WRIS_L3_Slide_Title = $WRIS_Gallery_Settings['WRIS_L3_Slide_Title'];
22
  else
23
+ $WRIS_L3_Slide_Title = 1;
24
 
25
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Set_slide_Title']))
26
+ $WRIS_L3_Set_slide_Title = $WRIS_Gallery_Settings['WRIS_L3_Set_slide_Title'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  else
28
+ $WRIS_L3_Set_slide_Title = 0;
29
+
30
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Auto_Slideshow']))
31
+ $WRIS_L3_Auto_Slideshow = $WRIS_Gallery_Settings['WRIS_L3_Auto_Slideshow'];
32
+ else
33
+ $WRIS_L3_Auto_Slideshow = 1;
34
+
35
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Transition']))
36
+ $WRIS_L3_Transition = $WRIS_Gallery_Settings['WRIS_L3_Transition'];
37
+ else
38
+ $WRIS_L3_Transition = 1;
39
+
40
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Transition_Speed']))
41
+ $WRIS_L3_Transition_Speed = $WRIS_Gallery_Settings['WRIS_L3_Transition_Speed'];
42
+ else
43
+ $WRIS_L3_Transition_Speed = 5000;
44
+
45
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Slide_Order']))
46
+ $WRIS_L3_Slide_Order = $WRIS_Gallery_Settings['WRIS_L3_Slide_Order'];
47
+ else
48
+ $WRIS_L3_Slide_Order = "ASC";
49
+
50
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Slide_Distance']))
51
+ $WRIS_L3_Slide_Distance = $WRIS_Gallery_Settings['WRIS_L3_Slide_Distance'];
52
+ else
53
+ $WRIS_L3_Slide_Distance = 5;
54
+
55
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Sliding_Arrow']))
56
+ $WRIS_L3_Sliding_Arrow = $WRIS_Gallery_Settings['WRIS_L3_Sliding_Arrow'];
57
+ else
58
+ $WRIS_L3_Sliding_Arrow = 1;
59
+
60
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Navigation']))
61
+ $WRIS_L3_Slider_Navigation = $WRIS_Gallery_Settings['WRIS_L3_Slider_Navigation'];
62
+ else
63
+ $WRIS_L3_Slider_Navigation = 1;
64
+
65
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Position']))
66
+ $WRIS_L3_Navigation_Position = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Position'];
67
+ else
68
+ $WRIS_L3_Navigation_Position = "bottom";
69
+
70
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Style']))
71
+ $WRIS_L3_Thumbnail_Style = $WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Style'];
72
+ else
73
+ $WRIS_L3_Thumbnail_Style = "border";
74
+
75
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Width']))
76
+ $WRIS_L3_Thumbnail_Width = $WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Width'];
77
+ else
78
+ $WRIS_L3_Thumbnail_Width = 120;
79
+
80
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Height']))
81
+ $WRIS_L3_Thumbnail_Height = $WRIS_Gallery_Settings['WRIS_L3_Thumbnail_Height'];
82
+ else
83
+ $WRIS_L3_Thumbnail_Height = 120;
84
+
85
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Button']))
86
+ $WRIS_L3_Navigation_Button = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Button'];
87
+ else
88
+ $WRIS_L3_Navigation_Button = 1;
89
+
90
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Width']))
91
+ $WRIS_L3_Width = $WRIS_Gallery_Settings['WRIS_L3_Width'];
92
+ else
93
+ $WRIS_L3_Width = "custom";
94
+
95
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Width']))
96
+ $WRIS_L3_Slider_Width = $WRIS_Gallery_Settings['WRIS_L3_Slider_Width'];
97
+ else
98
+ $WRIS_L3_Slider_Width = 1000;
99
+
100
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Height']))
101
+ $WRIS_L3_Height = $WRIS_Gallery_Settings['WRIS_L3_Height'];
102
+ else
103
+ $WRIS_L3_Height = "custom";
104
+
105
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Slider_Height']))
106
+ $WRIS_L3_Slider_Height = $WRIS_Gallery_Settings['WRIS_L3_Slider_Height'];
107
+ else
108
+ $WRIS_L3_Slider_Height = 500;
109
+
110
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Font_Style']))
111
+ $WRIS_L3_Font_Style = $WRIS_Gallery_Settings['WRIS_L3_Font_Style'];
112
+ else
113
+ $WRIS_L3_Font_Style = "Arial";
114
+
115
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Title_Color']))
116
+ $WRIS_L3_Title_Color = $WRIS_Gallery_Settings['WRIS_L3_Title_Color'];
117
+ else
118
+ $WRIS_L3_Title_Color = "#00000";
119
+
120
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Title_BgColor']))
121
+ $WRIS_L3_Title_BgColor = $WRIS_Gallery_Settings['WRIS_L3_Title_BgColor'];
122
+ else
123
+ $WRIS_L3_Title_BgColor = "#FFFFFF";
124
+
125
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Desc_Color']))
126
+ $WRIS_L3_Desc_Color = $WRIS_Gallery_Settings['WRIS_L3_Desc_Color'];
127
+ else
128
+ $WRIS_L3_Desc_Color = "#FFFFFF";
129
+
130
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Desc_BgColor']))
131
+ $WRIS_L3_Desc_BgColor = $WRIS_Gallery_Settings['WRIS_L3_Desc_BgColor'];
132
+ else
133
+ $WRIS_L3_Desc_BgColor = "#00000";
134
+
135
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Color']))
136
+ $WRIS_L3_Navigation_Color = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Color'];
137
+ else
138
+ $WRIS_L3_Navigation_Color = "#FFFFFF";
139
+
140
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Fullscreeen']))
141
+ $WRIS_L3_Fullscreeen = $WRIS_Gallery_Settings['WRIS_L3_Fullscreeen'];
142
+ else
143
+ $WRIS_L3_Fullscreeen = 1;
144
+
145
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Custom_CSS']))
146
+ $WRIS_L3_Custom_CSS = $WRIS_Gallery_Settings['WRIS_L3_Custom_CSS'];
147
+ else
148
+ $WRIS_L3_Custom_CSS = "";
149
+
150
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Bullets_Color']))
151
+ $WRIS_L3_Navigation_Bullets_Color = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Bullets_Color'];
152
+ else
153
+ $WRIS_L3_Navigation_Bullets_Color = "#000000";
154
+
155
+ if(isset($WRIS_Gallery_Settings['WRIS_L3_Navigation_Pointer_Color']))
156
+ $WRIS_L3_Navigation_Pointer_Color = $WRIS_Gallery_Settings['WRIS_L3_Navigation_Pointer_Color'];
157
+ else
158
+ $WRIS_L3_Navigation_Pointer_Color = "#000000";
159
  }
160
  ?>
161
  <script type="text/javascript">
162
+ jQuery(document).ready(function(){
163
  var editor = CodeMirror.fromTextArea(document.getElementById("wl-l3-custom-css"), {
164
+ lineWrapping: true,
165
  lineNumbers: true,
166
  styleActiveLine: true,
167
  matchBrackets: true,
ultimate-responsive-image-slider.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Ultimate Responsive Image Slider
4
- * Version: 3.1.5
5
  * Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
6
  * Author: Weblizar
7
  * Author URI: https://weblizar.com/plugins/ultimate-responsive-image-slider-pro/
1
  <?php
2
  /**
3
  * Plugin Name: Ultimate Responsive Image Slider
4
+ * Version: 3.1.6
5
  * Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
6
  * Author: Weblizar
7
  * Author URI: https://weblizar.com/plugins/ultimate-responsive-image-slider-pro/