Testimonials Widget - Version 3.5.1

Version Description

= 3.0.0 =

This is a major overhaul without backwards compliance of over 80 changes. Please read the Testimonials Widget 3.0 and Testimonials Widget Premium 2.0 Upgrade Notice for more help.

If you use custom CSS, actions, or filters to modify Testimonials Widget and Testimonials Widget Premium actions or output, this upgrade will not be compatible with those modifications until corrections are made.

= Older Versions =

Read UPGRADING.

Download this release

Release Info

Developer saurabhd
Plugin Icon wp plugin Testimonials Widget
Version 3.5.1
Comparing to
See all releases

Code changes from version 3.5.0 to 3.5.1

CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
 
3
  ## master
4
 
 
 
 
 
 
5
  ## 3.5.0
6
  * Confirm WordPress 5.2 compatibility
7
 
2
 
3
  ## master
4
 
5
+ ## 3.5.1
6
+ * Confirm WordPress 5.3 compatibility
7
+ * Fix Category/Tags sorting issue
8
+ * Fix PHP 7.3 Compatibility issue
9
+
10
  ## 3.5.0
11
  * Confirm WordPress 5.2 compatibility
12
 
includes/libraries/aihrus-framework/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@
2
 
3
  ## master
4
 
 
 
 
5
  ## 1.3.3
6
  * Fix Axelerant website links
7
 
2
 
3
  ## master
4
 
5
+ # 1.3.4
6
+ * Fix PHP 7.3 compatibility issue for preg_match compilation
7
+
8
  ## 1.3.3
9
  * Fix Axelerant website links
10
 
includes/libraries/aihrus-framework/README.md CHANGED
@@ -1,7 +1,7 @@
1
  # Axelerant Framework
2
 
3
- Tested up to: 5.0
4
- Stable tag: 1.3.3
5
 
6
  A helper library for WordPress plugins. Maintained by [Axelerant](https://www.axelerant.com).
7
 
1
  # Axelerant Framework
2
 
3
+ Tested up to: 5.3
4
+ Stable tag: 1.3.4
5
 
6
  A helper library for WordPress plugins. Maintained by [Axelerant](https://www.axelerant.com).
7
 
includes/libraries/aihrus-framework/aihrus-framework.php CHANGED
@@ -35,7 +35,7 @@ if ( ! defined( 'AIHR_DIR_LIB' ) ) {
35
  }
36
 
37
  if ( ! defined( 'AIHR_VERSION' ) ) {
38
- define( 'AIHR_VERSION', '1.3.3' );
39
  }
40
 
41
  require_once ABSPATH . 'wp-admin/includes/plugin.php';
35
  }
36
 
37
  if ( ! defined( 'AIHR_VERSION' ) ) {
38
+ define( 'AIHR_VERSION', '1.3.4' );
39
  }
40
 
41
  require_once ABSPATH . 'wp-admin/includes/plugin.php';
includes/libraries/aihrus-framework/includes/class-aihrus-settings.php CHANGED
@@ -803,7 +803,7 @@ abstract class Aihrus_Settings {
803
 
804
 
805
  public static function validate_terms( $input, $default = false ) {
806
- if ( preg_match( '#^(([\w- ]+)(,\s?)?)+$#', $input ) ) {
807
  return preg_replace( '#,\s*$#', '', $input );
808
  }
809
 
803
 
804
 
805
  public static function validate_terms( $input, $default = false ) {
806
+ if ( preg_match( '#^(([\w\- ]+)(,\s?)?)+$#', $input ) ) {
807
  return preg_replace( '#,\s*$#', '', $input );
808
  }
809
 
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: comprock,saurabhd,subharanjan
4
  Donate link: https://store.axelerant.com/donate/
5
  Tags: axelerant, client, customer, portfolio, quote, quotes, random, recommendation, reference, review, reviews, slider, testimonial, testimonials, wpml
6
  Requires at least: 3.9.2
7
- Tested up to: 5.2
8
- Stable tag: 3.5.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
4
  Donate link: https://store.axelerant.com/donate/
5
  Tags: axelerant, client, customer, portfolio, quote, quotes, random, recommendation, reference, review, reviews, slider, testimonial, testimonials, wpml
6
  Requires at least: 3.9.2
7
+ Tested up to: 5.3
8
+ Stable tag: 3.5.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
testimonials-widget.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://wordpress.org/plugins/testimonials-widget/
5
  * Description: Easily add social proofing to your website with Testimonials Widget. List or slide reviews via functions, shortcodes, or widgets.
6
  * lets you socially randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
7
- * Version: 3.5.0
8
  * Author: Axelerant
9
  * Author URI: https://www.axelerant.com/
10
  * License: GPLv2 or later
@@ -36,7 +36,7 @@ if ( ! defined( 'ABSPATH' ) ) {
36
  }
37
 
38
  if ( ! defined( 'TW_AIHR_VERSION' ) ) {
39
- define( 'TW_AIHR_VERSION', '1.3.3' );
40
  }
41
 
42
  if ( ! defined( 'TW_BASE' ) ) {
@@ -64,7 +64,7 @@ if ( ! defined( 'TW_PREMIUM_LINK' ) ) {
64
  }
65
 
66
  if ( ! defined( 'TW_VERSION' ) ) {
67
- define( 'TW_VERSION', '3.5.0' );
68
  }
69
 
70
  require_once TW_DIR_INC . 'requirements.php';
4
  * Plugin URI: http://wordpress.org/plugins/testimonials-widget/
5
  * Description: Easily add social proofing to your website with Testimonials Widget. List or slide reviews via functions, shortcodes, or widgets.
6
  * lets you socially randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
7
+ * Version: 3.5.1
8
  * Author: Axelerant
9
  * Author URI: https://www.axelerant.com/
10
  * License: GPLv2 or later
36
  }
37
 
38
  if ( ! defined( 'TW_AIHR_VERSION' ) ) {
39
+ define( 'TW_AIHR_VERSION', '1.3.4' );
40
  }
41
 
42
  if ( ! defined( 'TW_BASE' ) ) {
64
  }
65
 
66
  if ( ! defined( 'TW_VERSION' ) ) {
67
+ define( 'TW_VERSION', '3.5.1' );
68
  }
69
 
70
  require_once TW_DIR_INC . 'requirements.php';