Version Description
- 2020-07-02 fix - navigation text saving issue fixed.
Download this release
Release Info
Developer | pickplugins |
Plugin | Woocommerce Products Slider |
Version | 1.13.15 |
Comparing to | |
See all releases |
Code changes from version 1.13.14 to 1.13.15
- includes/class-metabox-wcps-hook.php +2 -2
- readme.txt +4 -1
- woocommerce-products-slider.php +2 -2
includes/class-metabox-wcps-hook.php
CHANGED
@@ -1632,7 +1632,7 @@ if(!function_exists('wcps_metabox_content_slider_options')) {
|
|
1632 |
'options' => array(
|
1633 |
array(
|
1634 |
'id' => 'prev',
|
1635 |
-
'parent' => 'wcps_options[slider]',
|
1636 |
'title' => __('Previous text','woocommerce-products-slider'),
|
1637 |
'details' => __('Set previous icon, you could use <a href="https://fontawesome.com/icons">fontawesome</a> icon html here.','woocommerce-products-slider'),
|
1638 |
'type' => 'text',
|
@@ -1642,7 +1642,7 @@ if(!function_exists('wcps_metabox_content_slider_options')) {
|
|
1642 |
),
|
1643 |
array(
|
1644 |
'id' => 'next',
|
1645 |
-
'parent' => 'wcps_options[slider]',
|
1646 |
'title' => __('Next text','woocommerce-products-slider'),
|
1647 |
'details' => __('Set next icon, you could use <a href="https://fontawesome.com/icons">fontawesome</a> icon html here','woocommerce-products-slider'),
|
1648 |
'type' => 'text',
|
1632 |
'options' => array(
|
1633 |
array(
|
1634 |
'id' => 'prev',
|
1635 |
+
'parent' => 'wcps_options[slider][navigation_text]',
|
1636 |
'title' => __('Previous text','woocommerce-products-slider'),
|
1637 |
'details' => __('Set previous icon, you could use <a href="https://fontawesome.com/icons">fontawesome</a> icon html here.','woocommerce-products-slider'),
|
1638 |
'type' => 'text',
|
1642 |
),
|
1643 |
array(
|
1644 |
'id' => 'next',
|
1645 |
+
'parent' => 'wcps_options[slider][navigation_text]',
|
1646 |
'title' => __('Next text','woocommerce-products-slider'),
|
1647 |
'details' => __('Set next icon, you could use <a href="https://fontawesome.com/icons">fontawesome</a> icon html here','woocommerce-products-slider'),
|
1648 |
'type' => 'text',
|
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,9 @@ then paste this shortcode anywhere in your page to display slider<br />
|
|
141 |
|
142 |
== Changelog ==
|
143 |
|
|
|
|
|
|
|
144 |
= 1.13.14 =
|
145 |
* 2020-07-01 remove - remove import layout notice.
|
146 |
* 2020-07-02 add - free and pro layouts filter at import layout page.
|
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.15
|
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.15 =
|
145 |
+
* 2020-07-02 fix - navigation text saving issue fixed.
|
146 |
+
|
147 |
= 1.13.14 =
|
148 |
* 2020-07-01 remove - remove import layout notice.
|
149 |
* 2020-07-02 add - free and pro layouts filter at import layout page.
|
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.15
|
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.15' );
|
27 |
define('wcps_server_url', 'https://www.pickplugins.com/demo/woocommerce-products-slider/');
|
28 |
//define('wcps_server_url', 'http://localhost/wp/');
|
29 |
|