Version Description
Download this release
Release Info
Developer | pickplugins |
Plugin | Woocommerce Products Slider |
Version | 1.13.27 |
Comparing to | |
See all releases |
Code changes from version 1.13.26 to 1.13.27
- readme.txt +3 -1
- templates/wcps-slider/wcps-slider-hook.php +23 -0
- woocommerce-products-slider.php +2 -2
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: 5.8
|
7 |
-
Stable tag: 1.13.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -142,6 +142,8 @@ then paste this shortcode anywhere in your page to display slider<br />
|
|
142 |
== Changelog ==
|
143 |
|
144 |
|
|
|
|
|
145 |
|
146 |
= 1.13.26 =
|
147 |
* 2022-01-10 removed - Remove owl.carousel.js and replaced by tiny-slider.js
|
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: 5.8
|
7 |
+
Stable tag: 1.13.27
|
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.27=
|
146 |
+
* 2022-01-14 fix - Responsive slider column ocunt issue fixed.
|
147 |
|
148 |
= 1.13.26 =
|
149 |
* 2022-01-10 removed - Remove owl.carousel.js and replaced by tiny-slider.js
|
templates/wcps-slider/wcps-slider-hook.php
CHANGED
@@ -859,6 +859,29 @@ function wcps_slider_main_scripts_tiny($args)
|
|
859 |
//axis: 'vertical',
|
860 |
autoHeight: true,
|
861 |
items: <?php echo $slider_column_large; ?>,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
862 |
slideBy: <?php echo $slider_slideby_large; ?>,
|
863 |
controls: <?php echo $slider_navigation; ?>,
|
864 |
controlsText: ['<?php echo $navigation_text_prev; ?>', '<?php echo $navigation_text_next; ?>'],
|
859 |
//axis: 'vertical',
|
860 |
autoHeight: true,
|
861 |
items: <?php echo $slider_column_large; ?>,
|
862 |
+
responsive: {
|
863 |
+
0: {
|
864 |
+
items: <?php echo $slider_column_small; ?>,
|
865 |
+
slideBy: <?php echo $slider_slideby_small; ?>,
|
866 |
+
nav: <?php echo $slider_navigation; ?>,
|
867 |
+
|
868 |
+
},
|
869 |
+
600: {
|
870 |
+
items: <?php echo $slider_column_medium; ?>,
|
871 |
+
slideBy: <?php echo $slider_slideby_medium; ?>,
|
872 |
+
nav: <?php echo $slider_navigation; ?>,
|
873 |
+
},
|
874 |
+
900: {
|
875 |
+
items: <?php echo $slider_column_medium; ?>,
|
876 |
+
slideBy: <?php echo $slider_slideby_medium; ?>,
|
877 |
+
nav: <?php echo $slider_navigation; ?>,
|
878 |
+
},
|
879 |
+
1200: {
|
880 |
+
items: <?php echo $slider_column_large; ?>,
|
881 |
+
slideBy: <?php echo $slider_slideby_large; ?>,
|
882 |
+
nav: <?php echo $slider_navigation; ?>,
|
883 |
+
}
|
884 |
+
},
|
885 |
slideBy: <?php echo $slider_slideby_large; ?>,
|
886 |
controls: <?php echo $slider_navigation; ?>,
|
887 |
controlsText: ['<?php echo $navigation_text_prev; ?>', '<?php echo $navigation_text_next; ?>'],
|
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: 5.9
|
9 |
Author: PickPlugins
|
@@ -23,7 +23,7 @@ class WoocommerceProductsSlider{
|
|
23 |
define('wcps_plugin_url', plugins_url('/', __FILE__) );
|
24 |
define('wcps_plugin_dir', plugin_dir_path( __FILE__ ) );
|
25 |
define('wcps_plugin_name', 'PickPlugins Product Slider' );
|
26 |
-
define('wcps_plugin_version', '1.13.
|
27 |
define('wcps_server_url', 'https://www.pickplugins.com/demo/woocommerce-products-slider/');
|
28 |
//define('wcps_server_url', 'http://localhost/wp/');
|
29 |
|
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.27
|
7 |
WC requires at least: 3.0.0
|
8 |
WC tested up to: 5.9
|
9 |
Author: PickPlugins
|
23 |
define('wcps_plugin_url', plugins_url('/', __FILE__) );
|
24 |
define('wcps_plugin_dir', plugin_dir_path( __FILE__ ) );
|
25 |
define('wcps_plugin_name', 'PickPlugins Product Slider' );
|
26 |
+
define('wcps_plugin_version', '1.13.27' );
|
27 |
define('wcps_server_url', 'https://www.pickplugins.com/demo/woocommerce-products-slider/');
|
28 |
//define('wcps_server_url', 'http://localhost/wp/');
|
29 |
|