Version Description
- 2022-05-16 add - Slider option Slides to scroll issue fixed. .
Download this release
Release Info
Developer | pickplugins |
Plugin | Woocommerce Products Slider |
Version | 1.13.35 |
Comparing to | |
See all releases |
Code changes from version 1.13.34 to 1.13.35
includes/class-metabox-wcps-hook.php
CHANGED
@@ -1553,8 +1553,8 @@ if(!function_exists('wcps_metabox_content_slider_options')) {
|
|
1553 |
|
1554 |
$args = array(
|
1555 |
'id' => 'slideby',
|
1556 |
-
'title' => __('
|
1557 |
-
'details' => __('Slide
|
1558 |
'type' => 'option_group',
|
1559 |
'options' => array(
|
1560 |
array(
|
1553 |
|
1554 |
$args = array(
|
1555 |
'id' => 'slideby',
|
1556 |
+
'title' => __('Slides to scroll ','woocommerce-products-slider'),
|
1557 |
+
'details' => __('Slide to scroll count.','woocommerce-products-slider'),
|
1558 |
'type' => 'option_group',
|
1559 |
'options' => array(
|
1560 |
array(
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Tags: product slider, woocommerce slider, carousel slider, product category slider, woo slider, carousel slider, woocommerce product slider
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 6.0
|
7 |
-
Stable tag: 1.13.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -142,7 +142,9 @@ then paste this shortcode anywhere in your page to display slider<br />
|
|
142 |
== Changelog ==
|
143 |
|
144 |
|
145 |
-
|
|
|
|
|
146 |
= 1.13.34 =
|
147 |
* 2022-05-16 add - Slider option swipe and swipeToSlide added for mobile device.
|
148 |
|
4 |
Tags: product slider, woocommerce slider, carousel slider, product category slider, woo slider, carousel slider, woocommerce product slider
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 1.13.35
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
142 |
== Changelog ==
|
143 |
|
144 |
|
145 |
+
= 1.13.35 =
|
146 |
+
* 2022-05-16 add - Slider option Slides to scroll issue fixed.
|
147 |
+
.
|
148 |
= 1.13.34 =
|
149 |
* 2022-05-16 add - Slider option swipe and swipeToSlide added for mobile device.
|
150 |
|
templates/wcps-slider/wcps-slider-hook.php
CHANGED
@@ -854,12 +854,11 @@ function wcps_slider_main_scripts_slick($args)
|
|
854 |
adaptiveHeight: true,
|
855 |
slidesToShow: <?php echo $slider_column_large; ?>,
|
856 |
slidesToScroll: <?php echo $slider_slideby_large; ?>,
|
857 |
-
|
858 |
responsive: [{
|
859 |
breakpoint: 1200,
|
860 |
settings: {
|
861 |
slidesToShow: <?php echo $slider_column_large; ?>,
|
862 |
-
|
863 |
nav: <?php echo $slider_navigation; ?>,
|
864 |
}
|
865 |
},
|
@@ -877,44 +876,30 @@ function wcps_slider_main_scripts_slick($args)
|
|
877 |
slidesToShow: <?php echo $slider_column_small; ?>,
|
878 |
slidesToScroll: <?php echo $slider_slideby_small; ?>,
|
879 |
nav: <?php echo $slider_navigation; ?>,
|
|
|
|
|
|
|
|
|
880 |
}
|
881 |
}
|
882 |
-
// You can unslick at a given breakpoint now by adding:
|
883 |
-
// settings: "unslick"
|
884 |
-
// instead of a settings object
|
885 |
],
|
886 |
-
|
887 |
-
|
888 |
gutter: <?php echo $gutter; ?>,
|
889 |
-
|
890 |
arrows: <?php echo $slider_navigation; ?>,
|
891 |
appendArrows: '.controlsWrap-<?php echo $wcps_id; ?>',
|
892 |
-
|
893 |
prevArrow: '<div class="prev"><?php echo $navigation_text_prev; ?></div>',
|
894 |
nextArrow: '<div class="next"><?php echo $navigation_text_next; ?></div>',
|
895 |
-
|
896 |
speed: <?php echo $auto_play_speed; ?>,
|
897 |
autoplay: <?php echo $slider_auto_play; ?>,
|
898 |
autoplaySpeed: <?php echo $auto_play_timeout; ?>,
|
899 |
-
|
900 |
-
// autoplayDirection: <?php echo ($slider_rtl === 'true') ? "'forward'" : "'backward'"; ?>,
|
901 |
-
pauseOnHover: <?php echo $slider_stop_on_hover; ?>,
|
902 |
-
//navSpeed: <?php //echo $slider_slide_speed; ?>//,
|
903 |
dots: <?php echo $slider_pagination; ?>,
|
|
|
904 |
navPosition: 'bottom',
|
905 |
-
//dotsSpeed: <?php //echo $slider_pagination_speed;
|
906 |
-
?>//,
|
907 |
-
infinite: <?php echo $slider_loop; ?>,
|
908 |
-
// infinite: <?php echo $slider_rewind; ?>,
|
909 |
centerMode: <?php echo $slider_center; ?>,
|
910 |
draggable: <?php echo $slider_mouse_drag; ?>,
|
911 |
touchMove: <?php echo $slider_touch_drag; ?>,
|
912 |
swipe: <?php echo $slider_touch_drag; ?>,
|
913 |
-
swipeToSlide: true,
|
914 |
lazyLoad: <?php echo $slider_lazy_load; ?>,
|
915 |
rtl: <?php echo $slider_rtl; ?>,
|
916 |
-
|
917 |
-
|
918 |
});
|
919 |
|
920 |
|
854 |
adaptiveHeight: true,
|
855 |
slidesToShow: <?php echo $slider_column_large; ?>,
|
856 |
slidesToScroll: <?php echo $slider_slideby_large; ?>,
|
|
|
857 |
responsive: [{
|
858 |
breakpoint: 1200,
|
859 |
settings: {
|
860 |
slidesToShow: <?php echo $slider_column_large; ?>,
|
861 |
+
slidesToScroll: <?php echo $slider_slideby_large; ?>,
|
862 |
nav: <?php echo $slider_navigation; ?>,
|
863 |
}
|
864 |
},
|
876 |
slidesToShow: <?php echo $slider_column_small; ?>,
|
877 |
slidesToScroll: <?php echo $slider_slideby_small; ?>,
|
878 |
nav: <?php echo $slider_navigation; ?>,
|
879 |
+
touchMove: <?php echo $slider_touch_drag; ?>,
|
880 |
+
swipeToSlide: <?php echo $slider_touch_drag; ?>,
|
881 |
+
|
882 |
+
|
883 |
}
|
884 |
}
|
|
|
|
|
|
|
885 |
],
|
|
|
|
|
886 |
gutter: <?php echo $gutter; ?>,
|
|
|
887 |
arrows: <?php echo $slider_navigation; ?>,
|
888 |
appendArrows: '.controlsWrap-<?php echo $wcps_id; ?>',
|
|
|
889 |
prevArrow: '<div class="prev"><?php echo $navigation_text_prev; ?></div>',
|
890 |
nextArrow: '<div class="next"><?php echo $navigation_text_next; ?></div>',
|
|
|
891 |
speed: <?php echo $auto_play_speed; ?>,
|
892 |
autoplay: <?php echo $slider_auto_play; ?>,
|
893 |
autoplaySpeed: <?php echo $auto_play_timeout; ?>,
|
|
|
|
|
|
|
|
|
894 |
dots: <?php echo $slider_pagination; ?>,
|
895 |
+
nav: <?php echo $slider_navigation; ?>,
|
896 |
navPosition: 'bottom',
|
|
|
|
|
|
|
|
|
897 |
centerMode: <?php echo $slider_center; ?>,
|
898 |
draggable: <?php echo $slider_mouse_drag; ?>,
|
899 |
touchMove: <?php echo $slider_touch_drag; ?>,
|
900 |
swipe: <?php echo $slider_touch_drag; ?>,
|
|
|
901 |
lazyLoad: <?php echo $slider_lazy_load; ?>,
|
902 |
rtl: <?php echo $slider_rtl; ?>,
|
|
|
|
|
903 |
});
|
904 |
|
905 |
|
woocommerce-products-slider.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: PickPlugins Product Slider for WooCommerce
|
4 |
Plugin URI: http://pickplugins.com/items/woocommerce-product-slider-for-wordpress/
|
5 |
Description: Fully responsive and mobile ready Carousel Slider for your WooCommerce product. unlimited slider anywhere via short-codes and easy admin setting.
|
6 |
-
Version: 1.13.
|
7 |
WC requires at least: 3.0.0
|
8 |
WC tested up to: 6.0
|
9 |
Author: PickPlugins
|
@@ -25,7 +25,7 @@ class WoocommerceProductsSlider
|
|
25 |
define('wcps_plugin_url', plugins_url('/', __FILE__));
|
26 |
define('wcps_plugin_dir', plugin_dir_path(__FILE__));
|
27 |
define('wcps_plugin_name', 'PickPlugins Product Slider');
|
28 |
-
define('wcps_plugin_version', '1.13.
|
29 |
define('wcps_server_url', 'https://www.pickplugins.com/demo/woocommerce-products-slider/');
|
30 |
//define('wcps_server_url', 'http://localhost/wp/');
|
31 |
|
3 |
Plugin Name: PickPlugins Product Slider for WooCommerce
|
4 |
Plugin URI: http://pickplugins.com/items/woocommerce-product-slider-for-wordpress/
|
5 |
Description: Fully responsive and mobile ready Carousel Slider for your WooCommerce product. unlimited slider anywhere via short-codes and easy admin setting.
|
6 |
+
Version: 1.13.35
|
7 |
WC requires at least: 3.0.0
|
8 |
WC tested up to: 6.0
|
9 |
Author: PickPlugins
|
25 |
define('wcps_plugin_url', plugins_url('/', __FILE__));
|
26 |
define('wcps_plugin_dir', plugin_dir_path(__FILE__));
|
27 |
define('wcps_plugin_name', 'PickPlugins Product Slider');
|
28 |
+
define('wcps_plugin_version', '1.13.35');
|
29 |
define('wcps_server_url', 'https://www.pickplugins.com/demo/woocommerce-products-slider/');
|
30 |
//define('wcps_server_url', 'http://localhost/wp/');
|
31 |
|