Version Description
Download this release
Release Info
Developer | raldea89 |
Plugin | Strong Testimonials |
Version | 2.51.8 |
Comparing to | |
See all releases |
Code changes from version 2.51.7 to 2.51.8
- admin/class-strong-testimonials-lite-vs-pro-page.php +4 -1
- changelog.txt +3 -0
- readme.txt +1 -1
- strong-testimonials.php +2 -2
admin/class-strong-testimonials-lite-vs-pro-page.php
CHANGED
@@ -24,7 +24,10 @@ class Strong_Testimonials_Lite_vs_PRO_page {
|
|
24 |
*/
|
25 |
public function filter_action_links( $links ) {
|
26 |
|
27 |
-
|
|
|
|
|
|
|
28 |
|
29 |
return $links;
|
30 |
}
|
24 |
*/
|
25 |
public function filter_action_links( $links ) {
|
26 |
|
27 |
+
if ( apply_filters( 'st_plugins_upgrade_pro', true ) ) {
|
28 |
+
|
29 |
+
$links = array_merge( array ( '<a target="_blank" class="wpmtst-lite-vs-pro" href="https://strongtestimonials.com/pricing/?utm_source=strong-testimonials-lite&utm_medium=plugin_settings&utm_campaign=upsell">' . esc_html__( 'Upgrade to PRO!', 'strong-testimonials' ) . '</a>' ), $links );
|
30 |
+
}
|
31 |
|
32 |
return $links;
|
33 |
}
|
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 2.51.7 - 21.03.2022 =
|
2 |
- Added: Lite vs Pro page ( https://github.com/WPChill/strong-testimonials/issues/167 )
|
3 |
- Added: Upgrade to PRO action link in the plugins page ( https://github.com/WPChill/strong-testimonials/issues/303 )
|
1 |
+
= 2.51.8 - 28.03.2022 =
|
2 |
+
- Fixed: Added filter to remove Upgrade from PRO when max license ( https://github.com/WPChill/strong-testimonials/issues/305 )
|
3 |
+
|
4 |
= 2.51.7 - 21.03.2022 =
|
5 |
- Added: Lite vs Pro page ( https://github.com/WPChill/strong-testimonials/issues/167 )
|
6 |
- Added: Upgrade to PRO action link in the plugins page ( https://github.com/WPChill/strong-testimonials/issues/303 )
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: testimonials, testimonial slider, testimonial form, star ratings
|
|
4 |
Requires at least: 5.2
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.9
|
7 |
-
Stable tag: 2.51.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
4 |
Requires at least: 5.2
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.9
|
7 |
+
Stable tag: 2.51.8
|
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: WPChill
|
7 |
* Author URI: https://wpchill.com/
|
8 |
-
* Version: 2.51.
|
9 |
* Text Domain: strong-testimonials
|
10 |
* Domain Path: /languages
|
11 |
* Requires: 4.6 or higher
|
@@ -45,7 +45,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
45 |
exit;
|
46 |
}
|
47 |
|
48 |
-
define( 'WPMTST_VERSION', '2.51.
|
49 |
define( 'WPMTST_PLUGIN', plugin_basename( __FILE__ ) ); // strong-testimonials/strong-testimonials.php
|
50 |
define( 'WPMTST', dirname( WPMTST_PLUGIN ) ); // strong-testimonials
|
51 |
defined( 'WPMTST_STORE_URL' ) || define( 'WPMTST_STORE_URL', 'https://strongtestimonials.com' );
|
5 |
* Description: Collect and display your testimonials or reviews.
|
6 |
* Author: WPChill
|
7 |
* Author URI: https://wpchill.com/
|
8 |
+
* Version: 2.51.8
|
9 |
* Text Domain: strong-testimonials
|
10 |
* Domain Path: /languages
|
11 |
* Requires: 4.6 or higher
|
45 |
exit;
|
46 |
}
|
47 |
|
48 |
+
define( 'WPMTST_VERSION', '2.51.8' );
|
49 |
define( 'WPMTST_PLUGIN', plugin_basename( __FILE__ ) ); // strong-testimonials/strong-testimonials.php
|
50 |
define( 'WPMTST', dirname( WPMTST_PLUGIN ) ); // strong-testimonials
|
51 |
defined( 'WPMTST_STORE_URL' ) || define( 'WPMTST_STORE_URL', 'https://strongtestimonials.com' );
|