Version Description
Download this release
Release Info
Developer | giucu91 |
Plugin | Strong Testimonials |
Version | 2.41.1 |
Comparing to | |
See all releases |
Code changes from version 2.41.0 to 2.41.1
- admin/views-validate.php +1 -1
- changelog.txt +5 -1
- includes/class-strong-view-slideshow.php +1 -1
- readme.txt +1 -1
- strong-testimonials.php +2 -2
admin/views-validate.php
CHANGED
@@ -83,7 +83,7 @@ function wpmtst_sanitize_view( $input ) {
|
|
83 |
$data['pagination'] = isset( $input['pagination'] ) ? 1 : 0;
|
84 |
$data['pagination_settings'] = wpmtst_sanitize_view_pagination( $input['pagination_settings'] );
|
85 |
|
86 |
-
$data['title'] = isset( $input['title'] ) ? 1 :
|
87 |
$data['title_link'] = sanitize_text_field( $input['title_link'] );
|
88 |
|
89 |
$data['content'] = sanitize_text_field( $input['content'] );
|
83 |
$data['pagination'] = isset( $input['pagination'] ) ? 1 : 0;
|
84 |
$data['pagination_settings'] = wpmtst_sanitize_view_pagination( $input['pagination_settings'] );
|
85 |
|
86 |
+
$data['title'] = isset( $input['title'] ) ? 1 : 'hidden';
|
87 |
$data['title_link'] = sanitize_text_field( $input['title_link'] );
|
88 |
|
89 |
$data['content'] = sanitize_text_field( $input['content'] );
|
changelog.txt
CHANGED
@@ -1,4 +1,8 @@
|
|
1 |
-
= 2.41.
|
|
|
|
|
|
|
|
|
2 |
* Added support for comments to Testimonials
|
3 |
* Added options to calculate average rating for multiple ratings
|
4 |
* Added GDPR integrations
|
1 |
+
= 2.41.1 =
|
2 |
+
* Fixed title option bug from views
|
3 |
+
* Fixed continous sliding behavior bug
|
4 |
+
|
5 |
+
= 2.41.0 =
|
6 |
* Added support for comments to Testimonials
|
7 |
* Added options to calculate average rating for multiple ratings
|
8 |
* Added GDPR integrations
|
includes/class-strong-view-slideshow.php
CHANGED
@@ -391,7 +391,7 @@ class Strong_View_Slideshow extends Strong_View_Display {
|
|
391 |
'pause' => $this->atts['slideshow_settings']['pause'] * 1000,
|
392 |
'autoHover' => $this->atts['slideshow_settings']['auto_hover'] ? 1 : 0,
|
393 |
'autoStart' => $this->atts['slideshow_settings']['auto_start'] ? 1 : 0,
|
394 |
-
'
|
395 |
'stopAutoOnClick' => $this->atts['slideshow_settings']['stop_auto_on_click'] ? 1 : 0,
|
396 |
'adaptiveHeight' => $this->atts['slideshow_settings']['adapt_height'] ? 1 : 0,
|
397 |
'adaptiveHeightSpeed' => $this->atts['slideshow_settings']['adapt_height_speed'] * 1000,
|
391 |
'pause' => $this->atts['slideshow_settings']['pause'] * 1000,
|
392 |
'autoHover' => $this->atts['slideshow_settings']['auto_hover'] ? 1 : 0,
|
393 |
'autoStart' => $this->atts['slideshow_settings']['auto_start'] ? 1 : 0,
|
394 |
+
'infiniteLoop' => $this->atts['slideshow_settings']['continuous_sliding'] ? 1 : 0,
|
395 |
'stopAutoOnClick' => $this->atts['slideshow_settings']['stop_auto_on_click'] ? 1 : 0,
|
396 |
'adaptiveHeight' => $this->atts['slideshow_settings']['adapt_height'] ? 1 : 0,
|
397 |
'adaptiveHeightSpeed' => $this->atts['slideshow_settings']['adapt_height_speed'] * 1000,
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: testimonials, testimonial slider, testimonial form, star ratings
|
|
4 |
Requires at least: 4.6
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.4
|
7 |
-
Stable tag: 2.41.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
4 |
Requires at least: 4.6
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.4
|
7 |
+
Stable tag: 2.41.1
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
strong-testimonials.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Collect and display your testimonials or reviews.
|
6 |
* Author: MachoThemes
|
7 |
* Author URI: https://www.machothemes.com/
|
8 |
-
* Version: 2.41.
|
9 |
* Text Domain: strong-testimonials
|
10 |
* Domain Path: /languages
|
11 |
* Requires: 4.6 or higher
|
@@ -44,7 +44,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
44 |
exit;
|
45 |
}
|
46 |
|
47 |
-
define( 'WPMTST_VERSION', '2.41.
|
48 |
define( 'WPMTST_PLUGIN', plugin_basename( __FILE__ ) ); // strong-testimonials/strong-testimonials.php
|
49 |
define( 'WPMTST', dirname( WPMTST_PLUGIN ) ); // strong-testimonials
|
50 |
defined( 'WPMTST_STORE_URL' ) || define( 'WPMTST_STORE_URL', 'https://strongtestimonials.com' );
|
5 |
* Description: Collect and display your testimonials or reviews.
|
6 |
* Author: MachoThemes
|
7 |
* Author URI: https://www.machothemes.com/
|
8 |
+
* Version: 2.41.1
|
9 |
* Text Domain: strong-testimonials
|
10 |
* Domain Path: /languages
|
11 |
* Requires: 4.6 or higher
|
44 |
exit;
|
45 |
}
|
46 |
|
47 |
+
define( 'WPMTST_VERSION', '2.41.1' );
|
48 |
define( 'WPMTST_PLUGIN', plugin_basename( __FILE__ ) ); // strong-testimonials/strong-testimonials.php
|
49 |
define( 'WPMTST', dirname( WPMTST_PLUGIN ) ); // strong-testimonials
|
50 |
defined( 'WPMTST_STORE_URL' ) || define( 'WPMTST_STORE_URL', 'https://strongtestimonials.com' );
|