Woocommerce Products Slider - Version 1.13.33

Version Description

  • 2022-03-25 fix - term thumbnail size issue fixed.
Download this release

Release Info

Developer pickplugins
Plugin Icon 128x128 Woocommerce Products Slider
Version 1.13.33
Comparing to
See all releases

Code changes from version 1.13.32 to 1.13.33

includes/functions-layout-element.php CHANGED
@@ -692,8 +692,10 @@ function wcps_layout_element_term_thumb($args){
692
 
693
  $thumbnail_id = get_term_meta( $term_id, 'thumbnail_id', true );
694
 
695
- $image_url = wp_get_attachment_url( $thumbnail_id );
696
- $image_url = !empty($image_url) ? $image_url : $default_thumb_src;
 
 
697
  $term_link = get_term_link($term_id);
698
 
699
 
692
 
693
  $thumbnail_id = get_term_meta( $term_id, 'thumbnail_id', true );
694
 
695
+ //$image_url = wp_get_attachment_url( $thumbnail_id );
696
+ $image_url = wp_get_attachment_image_src($thumbnail_id, $thumb_size);
697
+
698
+ $image_url = !empty($image_url[0]) ? $image_url[0] : $default_thumb_src;
699
  $term_link = get_term_link($term_id);
700
 
701
 
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.9
7
- Stable tag: 1.13.32
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -143,6 +143,10 @@ then paste this shortcode anywhere in your page to display slider<br />
143
 
144
 
145
 
 
 
 
 
146
  = 1.13.32 =
147
  * 2022-03-06 fix - slider timeout and speed issue fixed.
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: 5.9
7
+ Stable tag: 1.13.33
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
143
 
144
 
145
 
146
+ = 1.13.33 =
147
+ * 2022-03-25 fix - term thumbnail size issue fixed.
148
+
149
+
150
  = 1.13.32 =
151
  * 2022-03-06 fix - slider timeout and speed issue fixed.
152
 
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.32
7
  WC requires at least: 3.0.0
8
  WC tested up to: 5.9
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.32');
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.33
7
  WC requires at least: 3.0.0
8
  WC tested up to: 5.9
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.33');
29
  define('wcps_server_url', 'https://www.pickplugins.com/demo/woocommerce-products-slider/');
30
  //define('wcps_server_url', 'http://localhost/wp/');
31