Version Description
- 2020-02-05 fix - Slider pagination at bottom option issue fixed
Download this release
Release Info
Developer | pickplugins |
Plugin | Woocommerce Products Slider |
Version | 1.12.24 |
Comparing to | |
See all releases |
Code changes from version 1.12.23 to 1.12.24
includes/functions/functions-wcps-meta-box.php
CHANGED
@@ -1558,10 +1558,10 @@ if(!function_exists('wcps_meta_tab_content_options')) {
|
|
1558 |
$args = array(
|
1559 |
'id' => 'wcps_slider_pagination',
|
1560 |
//'parent' => '',
|
1561 |
-
'title' => __('Slider
|
1562 |
-
'details' => __('Enable or disable slider
|
1563 |
'type' => 'select',
|
1564 |
-
'value' => $
|
1565 |
'default' => 'true',
|
1566 |
'args' => array(
|
1567 |
'true'=>__('True','woocommerce-products-slider'),
|
1558 |
$args = array(
|
1559 |
'id' => 'wcps_slider_pagination',
|
1560 |
//'parent' => '',
|
1561 |
+
'title' => __('Slider pagination at bottom','woocommerce-products-slider'),
|
1562 |
+
'details' => __('Enable or disable slider pagination at bottom.','woocommerce-products-slider'),
|
1563 |
'type' => 'select',
|
1564 |
+
'value' => $wcps_slider_pagination,
|
1565 |
'default' => 'true',
|
1566 |
'args' => array(
|
1567 |
'true'=>__('True','woocommerce-products-slider'),
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Tags: carousel, product, slider, woocommerce, carousel slider, product slider, woocommerce slider, Woocommerce Product slider
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.3
|
7 |
-
Stable tag: 1.12.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -93,6 +93,9 @@ then paste this shortcode anywhere in your page to display slider<br />
|
|
93 |
|
94 |
== Changelog ==
|
95 |
|
|
|
|
|
|
|
96 |
|
97 |
= 1.12.23 =
|
98 |
* 18/12/2019 add - added lazy load
|
4 |
Tags: carousel, product, slider, woocommerce, carousel slider, product slider, woocommerce slider, Woocommerce Product slider
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.3
|
7 |
+
Stable tag: 1.12.24
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
93 |
|
94 |
== Changelog ==
|
95 |
|
96 |
+
= 1.12.24 =
|
97 |
+
* 2020-02-05 fix - Slider pagination at bottom option issue fixed
|
98 |
+
|
99 |
|
100 |
= 1.12.23 =
|
101 |
* 18/12/2019 add - added lazy load
|
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.12.
|
7 |
WC requires at least: 3.0.0
|
8 |
WC tested up to: 3.7
|
9 |
Author: PickPlugins
|
@@ -24,7 +24,7 @@ class WoocommerceProductsSlider{
|
|
24 |
define('wcps_plugin_dir', plugin_dir_path( __FILE__ ) );
|
25 |
define('wcps_wp_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
|
26 |
define('wcps_plugin_name', 'PickPlugins Product Slider' );
|
27 |
-
define('wcps_version', '1.12.
|
28 |
define('wcps_server_url', 'https://www.pickplugins.com' );
|
29 |
define('wcps_plugin_basename', plugin_basename( __FILE__ ) );
|
30 |
|
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.12.24
|
7 |
WC requires at least: 3.0.0
|
8 |
WC tested up to: 3.7
|
9 |
Author: PickPlugins
|
24 |
define('wcps_plugin_dir', plugin_dir_path( __FILE__ ) );
|
25 |
define('wcps_wp_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
|
26 |
define('wcps_plugin_name', 'PickPlugins Product Slider' );
|
27 |
+
define('wcps_version', '1.12.24' );
|
28 |
define('wcps_server_url', 'https://www.pickplugins.com' );
|
29 |
define('wcps_plugin_basename', plugin_basename( __FILE__ ) );
|
30 |
|