Version Description
- Jan 10, 2020 =
- Fix: Pause on hover on/off issue.
- Fix: Slider infinite on/off issue.
- Fix: Slider adaptive height on/off issue.
- Fix: Slider swipe on/off issue.
- Fix: Slider draggable on/off issue.
- Fix: RTL mode on/off issue.
Download this release
Release Info
Developer | shapedplugin |
Plugin | Real Testimonials |
Version | 2.1.6 |
Comparing to | |
See all releases |
Code changes from version 2.1.5 to 2.1.6
- admin/assets/css/admin.css +0 -0
- admin/views/scripts.php +0 -0
- admin/views/widget.php +0 -0
- class/router.php +0 -0
- class/shortcodes.php +0 -0
- class/testimonial.php +0 -0
- includes/free/loader.php +0 -0
- includes/functions.php +0 -0
- public/views/deprecated-shortcodes.php +0 -0
- public/views/shortcoderender.php +10 -10
- public/views/templates/theme-one.php +0 -0
- readme.txt +9 -1
- testimonial-free.php +2 -2
admin/assets/css/admin.css
CHANGED
File without changes
|
admin/views/scripts.php
CHANGED
File without changes
|
admin/views/widget.php
CHANGED
File without changes
|
class/router.php
CHANGED
File without changes
|
class/shortcodes.php
CHANGED
File without changes
|
class/testimonial.php
CHANGED
File without changes
|
includes/free/loader.php
CHANGED
File without changes
|
includes/functions.php
CHANGED
File without changes
|
public/views/deprecated-shortcodes.php
CHANGED
File without changes
|
public/views/shortcoderender.php
CHANGED
@@ -128,8 +128,8 @@ if ( ! class_exists( 'TFREE_Shortcode_Render' ) ) {
|
|
128 |
}
|
129 |
$slider_auto_play_speed = isset( $shortcode_data['slider_auto_play_speed'] ) ? $shortcode_data['slider_auto_play_speed'] : '3000';
|
130 |
$slider_scroll_speed = isset( $shortcode_data['slider_scroll_speed'] ) ? $shortcode_data['slider_scroll_speed'] : '600';
|
131 |
-
$slider_pause_on_hover = isset( $shortcode_data['slider_pause_on_hover'] ) &&
|
132 |
-
$slider_infinite = isset( $shortcode_data['slider_infinite'] ) &&
|
133 |
$slider_navigation = isset( $shortcode_data['navigation'] ) ? $shortcode_data['navigation'] : 'true';
|
134 |
$navigation_arrow_color = isset( $shortcode_data['navigation_arrow_color'] ) ? $shortcode_data['navigation_arrow_color'] : '#444444';
|
135 |
$navigation_hover_arrow_color = isset( $shortcode_data['navigation_hover_arrow_color'] ) ? $shortcode_data['navigation_hover_arrow_color'] : '#52b3d9';
|
@@ -164,10 +164,10 @@ if ( ! class_exists( 'TFREE_Shortcode_Render' ) ) {
|
|
164 |
$pagination_mobile = 'false';
|
165 |
break;
|
166 |
}
|
167 |
-
$adaptive_height = isset( $shortcode_data['adaptive_height'] ) &&
|
168 |
-
$slider_swipe = isset( $shortcode_data['slider_swipe'] ) &&
|
169 |
-
$slider_draggable = isset( $shortcode_data['slider_draggable'] ) &&
|
170 |
-
$rtl_mode = isset( $shortcode_data['rtl_mode'] ) &&
|
171 |
|
172 |
// Stylization.
|
173 |
$section_title = isset( $shortcode_data['section_title'] ) ? $shortcode_data['section_title'] : '';
|
@@ -299,12 +299,12 @@ if ( ! class_exists( 'TFREE_Shortcode_Render' ) ) {
|
|
299 |
$outline .= '<h2 class="sp-not-testimonial-found">' . esc_html__( 'No testimonials found', 'testimonial-free' ) . '</h2>';
|
300 |
}
|
301 |
|
302 |
-
|
303 |
-
|
304 |
|
305 |
-
|
306 |
|
307 |
-
|
308 |
|
309 |
}
|
310 |
|
128 |
}
|
129 |
$slider_auto_play_speed = isset( $shortcode_data['slider_auto_play_speed'] ) ? $shortcode_data['slider_auto_play_speed'] : '3000';
|
130 |
$slider_scroll_speed = isset( $shortcode_data['slider_scroll_speed'] ) ? $shortcode_data['slider_scroll_speed'] : '600';
|
131 |
+
$slider_pause_on_hover = isset( $shortcode_data['slider_pause_on_hover'] ) && $shortcode_data['slider_pause_on_hover'] ? 'true' : 'false';
|
132 |
+
$slider_infinite = isset( $shortcode_data['slider_infinite'] ) && $shortcode_data['slider_infinite'] ? 'true' : 'false';
|
133 |
$slider_navigation = isset( $shortcode_data['navigation'] ) ? $shortcode_data['navigation'] : 'true';
|
134 |
$navigation_arrow_color = isset( $shortcode_data['navigation_arrow_color'] ) ? $shortcode_data['navigation_arrow_color'] : '#444444';
|
135 |
$navigation_hover_arrow_color = isset( $shortcode_data['navigation_hover_arrow_color'] ) ? $shortcode_data['navigation_hover_arrow_color'] : '#52b3d9';
|
164 |
$pagination_mobile = 'false';
|
165 |
break;
|
166 |
}
|
167 |
+
$adaptive_height = isset( $shortcode_data['adaptive_height'] ) && $shortcode_data['adaptive_height'] ? 'true' : 'false';
|
168 |
+
$slider_swipe = isset( $shortcode_data['slider_swipe'] ) && $shortcode_data['slider_swipe'] ? 'true' : 'false';
|
169 |
+
$slider_draggable = isset( $shortcode_data['slider_draggable'] ) && $shortcode_data['slider_draggable'] ? 'true' : 'false';
|
170 |
+
$rtl_mode = isset( $shortcode_data['rtl_mode'] ) && $shortcode_data['rtl_mode'] ? 'true' : 'false';
|
171 |
|
172 |
// Stylization.
|
173 |
$section_title = isset( $shortcode_data['section_title'] ) ? $shortcode_data['section_title'] : '';
|
299 |
$outline .= '<h2 class="sp-not-testimonial-found">' . esc_html__( 'No testimonials found', 'testimonial-free' ) . '</h2>';
|
300 |
}
|
301 |
|
302 |
+
$outline .= '</div>';
|
303 |
+
$outline .= '</div>';
|
304 |
|
305 |
+
wp_reset_postdata();
|
306 |
|
307 |
+
return $outline;
|
308 |
|
309 |
}
|
310 |
|
public/views/templates/theme-one.php
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: shapedplugin
|
|
3 |
Donate link: http://shapedplugin.com/donate
|
4 |
Tags: testimonial, testimonials, testimonial showcase, testimonials showcase, testimonial slider, testimonials slider, testimonial carousel, testimonial front-end submission form, testimonials widget, easy testimonial, testimonial rotator, random testimonials, custom testimonial, collect testimonials, social proof, simple testimonial plugin, best testimonials showcase plugin, free testimonial, customers reviews
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 5.3.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -199,6 +199,14 @@ Thank you!
|
|
199 |
|
200 |
== Changelog ==
|
201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
= 2.1.5 - Dec 17, 2019 =
|
203 |
* Improved: Dashboard UI.
|
204 |
* Fix: WordPress 5.3.1 compatible issue.
|
3 |
Donate link: http://shapedplugin.com/donate
|
4 |
Tags: testimonial, testimonials, testimonial showcase, testimonials showcase, testimonial slider, testimonials slider, testimonial carousel, testimonial front-end submission form, testimonials widget, easy testimonial, testimonial rotator, random testimonials, custom testimonial, collect testimonials, social proof, simple testimonial plugin, best testimonials showcase plugin, free testimonial, customers reviews
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 5.3.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
199 |
|
200 |
== Changelog ==
|
201 |
|
202 |
+
= 2.1.6 - Jan 10, 2020 =
|
203 |
+
* Fix: Pause on hover on/off issue.
|
204 |
+
* Fix: Slider infinite on/off issue.
|
205 |
+
* Fix: Slider adaptive height on/off issue.
|
206 |
+
* Fix: Slider swipe on/off issue.
|
207 |
+
* Fix: Slider draggable on/off issue.
|
208 |
+
* Fix: RTL mode on/off issue.
|
209 |
+
|
210 |
= 2.1.5 - Dec 17, 2019 =
|
211 |
* Improved: Dashboard UI.
|
212 |
* Fix: WordPress 5.3.1 compatible issue.
|
testimonial-free.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Testimonial
|
13 |
* Plugin URI: https://shapedplugin.com/plugin/testimonial-pro/
|
14 |
* Description: Most Customizable and Powerful Testimonials Showcase Plugin for WordPress that allows you to manage and display Testimonials or Reviews on any page or widget.
|
15 |
-
* Version: 2.1.
|
16 |
* Author: ShapedPlugin
|
17 |
* Author URI: https://shapedplugin.com/
|
18 |
* Text Domain: testimonial-free
|
@@ -67,7 +67,7 @@ if ( ! class_exists( 'SP_Testimonial_FREE' ) ) {
|
|
67 |
*
|
68 |
* @var string
|
69 |
*/
|
70 |
-
public $version = '2.1.
|
71 |
|
72 |
/**
|
73 |
* @var SP_TFREE_Testimonial $shortcode
|
12 |
* Plugin Name: Testimonial
|
13 |
* Plugin URI: https://shapedplugin.com/plugin/testimonial-pro/
|
14 |
* Description: Most Customizable and Powerful Testimonials Showcase Plugin for WordPress that allows you to manage and display Testimonials or Reviews on any page or widget.
|
15 |
+
* Version: 2.1.6
|
16 |
* Author: ShapedPlugin
|
17 |
* Author URI: https://shapedplugin.com/
|
18 |
* Text Domain: testimonial-free
|
67 |
*
|
68 |
* @var string
|
69 |
*/
|
70 |
+
public $version = '2.1.6';
|
71 |
|
72 |
/**
|
73 |
* @var SP_TFREE_Testimonial $shortcode
|