Version Description
- Bug Fix - Issue with "Thumbnail Pagination" data being saved on 'Non-PRO' installations - causing a fatal error.
=
Download this release
Release Info
Developer | simonpedge |
Plugin | Slide Anything – Responsive Content / HTML Slider and Carousel |
Version | 2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.2.2
- php/slide-anything-admin.php +18 -16
- readme.txt +6 -0
- slide-anything.php +1 -1
php/slide-anything-admin.php
CHANGED
@@ -2333,22 +2333,24 @@ function cpt_slider_save_postdata() {
|
|
2333 |
update_post_meta($post->ID, 'sa_lazy_load_images', '0');
|
2334 |
}
|
2335 |
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
|
|
|
|
2352 |
}
|
2353 |
}
|
2354 |
|
2333 |
update_post_meta($post->ID, 'sa_lazy_load_images', '0');
|
2334 |
}
|
2335 |
|
2336 |
+
if ($sa_pro_version) {
|
2337 |
+
// THUMBNAIL PAGINATION
|
2338 |
+
if (isset($_POST['sa_thumbs_active']) && ($_POST['sa_thumbs_active'] == '1')) {
|
2339 |
+
update_post_meta($post->ID, 'sa_thumbs_active', '1');
|
2340 |
+
} else {
|
2341 |
+
update_post_meta($post->ID, 'sa_thumbs_active', '0');
|
2342 |
+
}
|
2343 |
+
update_post_meta($post->ID, 'sa_thumbs_location', sanitize_text_field($_POST['sa_thumbs_location'])); // SANATIZE
|
2344 |
+
update_post_meta($post->ID, 'sa_thumbs_image_size', sanitize_text_field($_POST['sa_thumbs_image_size'])); // SANATIZE
|
2345 |
+
update_post_meta($post->ID, 'sa_thumbs_padding', abs(floatval($_POST['sa_thumbs_padding']))); // SANATIZE
|
2346 |
+
update_post_meta($post->ID, 'sa_thumbs_width', abs(intval($_POST['sa_thumbs_width']))); // SANATIZE
|
2347 |
+
update_post_meta($post->ID, 'sa_thumbs_height', abs(intval($_POST['sa_thumbs_height']))); // SANATIZE
|
2348 |
+
update_post_meta($post->ID, 'sa_thumbs_opacity', abs(intval($_POST['sa_thumbs_opacity']))); // SANATIZE
|
2349 |
+
update_post_meta($post->ID, 'sa_thumbs_border_width', abs(intval($_POST['sa_thumbs_border_width']))); // SANATIZE
|
2350 |
+
update_post_meta($post->ID, 'sa_thumbs_border_color', sanitize_text_field($_POST['sa_thumbs_border_color'])); // SANATIZE
|
2351 |
+
update_post_meta($post->ID, 'sa_thumbs_resp_tablet', abs(intval($_POST['sa_thumbs_resp_tablet']))); // SANATIZE
|
2352 |
+
update_post_meta($post->ID, 'sa_thumbs_resp_mobile', abs(intval($_POST['sa_thumbs_resp_mobile']))); // SANATIZE
|
2353 |
+
}
|
2354 |
}
|
2355 |
}
|
2356 |
|
readme.txt
CHANGED
@@ -265,6 +265,9 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
|
|
265 |
= 2.2.1 =
|
266 |
* Bug Fix - Issue with "Lazy Load Images" feature, and when enabled UTF-8 encoding was broken. Resolved.
|
267 |
|
|
|
|
|
|
|
268 |
== Upgrade Notice ==
|
269 |
|
270 |
= 1.0 =
|
@@ -436,3 +439,6 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
|
|
436 |
|
437 |
= 2.2.1 =
|
438 |
* Bug Fix - Issue with "Lazy Load Images" feature, and when enabled UTF-8 encoding was broken. Resolved.
|
|
|
|
|
|
265 |
= 2.2.1 =
|
266 |
* Bug Fix - Issue with "Lazy Load Images" feature, and when enabled UTF-8 encoding was broken. Resolved.
|
267 |
|
268 |
+
= 2.2.2 =
|
269 |
+
* Bug Fix - Issue with "Thumbnail Pagination" data being saved on 'Non-PRO' installations - causing a fatal error.
|
270 |
+
|
271 |
== Upgrade Notice ==
|
272 |
|
273 |
= 1.0 =
|
439 |
|
440 |
= 2.2.1 =
|
441 |
* Bug Fix - Issue with "Lazy Load Images" feature, and when enabled UTF-8 encoding was broken. Resolved.
|
442 |
+
|
443 |
+
= 2.2.2 =
|
444 |
+
* Bug Fix - Issue with "Thumbnail Pagination" data being saved on 'Non-PRO' installations - causing a fatal error.
|
slide-anything.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://wordpress.org/plugins/slide-anything/
|
5 |
* Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
|
6 |
* Author: Simon Edge
|
7 |
-
* Version: 2.2.
|
8 |
* License: GPLv2 or later
|
9 |
*/
|
10 |
|
4 |
* Plugin URI: https://wordpress.org/plugins/slide-anything/
|
5 |
* Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
|
6 |
* Author: Simon Edge
|
7 |
+
* Version: 2.2.2
|
8 |
* License: GPLv2 or later
|
9 |
*/
|
10 |
|