Version Description
- 2020-07-05 fix - navigation display issue fixed.
Download this release
Release Info
Developer | pickplugins |
Plugin | Woocommerce Products Slider |
Version | 1.13.17 |
Comparing to | |
See all releases |
Code changes from version 1.13.16 to 1.13.17
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.4
|
7 |
-
Stable tag: 1.13.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -141,6 +141,10 @@ then paste this shortcode anywhere in your page to display slider<br />
|
|
141 |
|
142 |
== Changelog ==
|
143 |
|
|
|
|
|
|
|
|
|
144 |
= 1.13.16 =
|
145 |
* 2020-07-05 fix - Layouts editor saving issue fixed.
|
146 |
|
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.4
|
7 |
+
Stable tag: 1.13.17
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
141 |
|
142 |
== Changelog ==
|
143 |
|
144 |
+
= 1.13.17 =
|
145 |
+
* 2020-07-05 fix - navigation display issue fixed.
|
146 |
+
|
147 |
+
|
148 |
= 1.13.16 =
|
149 |
* 2020-07-05 fix - Layouts editor saving issue fixed.
|
150 |
|
templates/wcps-slider/wcps-slider-hook.php
CHANGED
@@ -834,6 +834,7 @@ function wcps_slider_main_scripts( $args){
|
|
834 |
$navigation_text_prev = !empty($slider_option['navigation_text']['prev']) ? $slider_option['navigation_text']['prev'] : $navigation_text_prev;
|
835 |
$navigation_text_next = !empty($slider_option['navigation_text']['next']) ? $slider_option['navigation_text']['next'] : $navigation_text_next;
|
836 |
|
|
|
837 |
|
838 |
?>
|
839 |
<script>
|
@@ -845,19 +846,19 @@ function wcps_slider_main_scripts( $args){
|
|
845 |
responsive:{
|
846 |
0:{
|
847 |
items:<?php echo $slider_column_small; ?>,
|
848 |
-
nav
|
849 |
},
|
850 |
600:{
|
851 |
items:<?php echo $slider_column_medium; ?>,
|
852 |
-
nav
|
853 |
},
|
854 |
900:{
|
855 |
items:<?php echo $slider_column_medium; ?>,
|
856 |
-
nav
|
857 |
},
|
858 |
1000:{
|
859 |
items:<?php echo $slider_column_large; ?>,
|
860 |
-
nav
|
861 |
}
|
862 |
},
|
863 |
autoplay:<?php echo $slider_auto_play; ?>,
|
834 |
$navigation_text_prev = !empty($slider_option['navigation_text']['prev']) ? $slider_option['navigation_text']['prev'] : $navigation_text_prev;
|
835 |
$navigation_text_next = !empty($slider_option['navigation_text']['next']) ? $slider_option['navigation_text']['next'] : $navigation_text_next;
|
836 |
|
837 |
+
//var_dump($slider_navigation);
|
838 |
|
839 |
?>
|
840 |
<script>
|
846 |
responsive:{
|
847 |
0:{
|
848 |
items:<?php echo $slider_column_small; ?>,
|
849 |
+
nav:<?php echo $slider_navigation; ?>
|
850 |
},
|
851 |
600:{
|
852 |
items:<?php echo $slider_column_medium; ?>,
|
853 |
+
nav:<?php echo $slider_navigation; ?>
|
854 |
},
|
855 |
900:{
|
856 |
items:<?php echo $slider_column_medium; ?>,
|
857 |
+
nav:<?php echo $slider_navigation; ?>
|
858 |
},
|
859 |
1000:{
|
860 |
items:<?php echo $slider_column_large; ?>,
|
861 |
+
nav:<?php echo $slider_navigation; ?>,
|
862 |
}
|
863 |
},
|
864 |
autoplay:<?php echo $slider_auto_play; ?>,
|
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: 4.2
|
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.17
|
7 |
WC requires at least: 3.0.0
|
8 |
WC tested up to: 4.2
|
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.17' );
|
27 |
define('wcps_server_url', 'https://www.pickplugins.com/demo/woocommerce-products-slider/');
|
28 |
//define('wcps_server_url', 'http://localhost/wp/');
|
29 |
|