Version Description
Download this release
Release Info
Developer | giucu91 |
Plugin | Strong Testimonials |
Version | 2.50.2 |
Comparing to | |
See all releases |
Code changes from version 2.50.1 to 2.50.2
- admin/class-strong-testimonials-upsell.php +8 -8
- changelog.txt +3 -0
- readme.txt +1 -1
- strong-testimonials.php +2 -2
admin/class-strong-testimonials-upsell.php
CHANGED
@@ -187,7 +187,7 @@ class Strong_Testimonials_Upsell {
|
|
187 |
);
|
188 |
}
|
189 |
|
190 |
-
public
|
191 |
$pages[ 'access' ] = array( $this, 'output_role_manager_page' );
|
192 |
return $pages;
|
193 |
}
|
@@ -356,7 +356,7 @@ class Strong_Testimonials_Upsell {
|
|
356 |
'<span class="wpmtst-upsell-badge">PRO</span>'
|
357 |
);
|
358 |
}
|
359 |
-
public
|
360 |
$pages[ 'review-markup' ] = array( $this, 'output_review_markup_upsell' );
|
361 |
return $pages;
|
362 |
}
|
@@ -705,11 +705,11 @@ class Strong_Testimonials_Upsell {
|
|
705 |
'<span class="wpmtst-upsell-badge">PRO</span>'
|
706 |
);
|
707 |
}
|
708 |
-
public
|
709 |
$pages[ 'assignment' ] = array( $this, 'output_assigment_upsell' );
|
710 |
return $pages;
|
711 |
}
|
712 |
-
public
|
713 |
?>
|
714 |
|
715 |
<div class="wpmtst-alert" style="margin-top:1.5rem;">
|
@@ -743,11 +743,11 @@ class Strong_Testimonials_Upsell {
|
|
743 |
'<span class="wpmtst-upsell-badge">PRO</span>'
|
744 |
);
|
745 |
}
|
746 |
-
public
|
747 |
$pages[ 'single_testiomonial_template' ] = array( $this, 'output_st_pro_upsell' );
|
748 |
return $pages;
|
749 |
}
|
750 |
-
public
|
751 |
?>
|
752 |
<div class="wpmtst-alert" style="margin-top:1.5rem;">
|
753 |
<?php
|
@@ -801,11 +801,11 @@ class Strong_Testimonials_Upsell {
|
|
801 |
'<span class="wpmtst-upsell-badge">PRO</span>'
|
802 |
);
|
803 |
}
|
804 |
-
public
|
805 |
$pages[ 'properties' ] = array( $this, 'output_properties_upsell' );
|
806 |
return $pages;
|
807 |
}
|
808 |
-
public
|
809 |
?>
|
810 |
<div class="wpmtst-alert" style="margin-top:1.5rem;">
|
811 |
<?php
|
187 |
);
|
188 |
}
|
189 |
|
190 |
+
public function register_rm_settings_page( $pages ) {
|
191 |
$pages[ 'access' ] = array( $this, 'output_role_manager_page' );
|
192 |
return $pages;
|
193 |
}
|
356 |
'<span class="wpmtst-upsell-badge">PRO</span>'
|
357 |
);
|
358 |
}
|
359 |
+
public function register_review_markup_settings_page( $pages ) {
|
360 |
$pages[ 'review-markup' ] = array( $this, 'output_review_markup_upsell' );
|
361 |
return $pages;
|
362 |
}
|
705 |
'<span class="wpmtst-upsell-badge">PRO</span>'
|
706 |
);
|
707 |
}
|
708 |
+
public function register_assigment_settings_page( $pages ) {
|
709 |
$pages[ 'assignment' ] = array( $this, 'output_assigment_upsell' );
|
710 |
return $pages;
|
711 |
}
|
712 |
+
public function output_assigment_upsell() {
|
713 |
?>
|
714 |
|
715 |
<div class="wpmtst-alert" style="margin-top:1.5rem;">
|
743 |
'<span class="wpmtst-upsell-badge">PRO</span>'
|
744 |
);
|
745 |
}
|
746 |
+
public function register_st_pro_page( $pages ) {
|
747 |
$pages[ 'single_testiomonial_template' ] = array( $this, 'output_st_pro_upsell' );
|
748 |
return $pages;
|
749 |
}
|
750 |
+
public function output_st_pro_upsell() {
|
751 |
?>
|
752 |
<div class="wpmtst-alert" style="margin-top:1.5rem;">
|
753 |
<?php
|
801 |
'<span class="wpmtst-upsell-badge">PRO</span>'
|
802 |
);
|
803 |
}
|
804 |
+
public function register_properties_page( $pages ) {
|
805 |
$pages[ 'properties' ] = array( $this, 'output_properties_upsell' );
|
806 |
return $pages;
|
807 |
}
|
808 |
+
public function output_properties_upsell() {
|
809 |
?>
|
810 |
<div class="wpmtst-alert" style="margin-top:1.5rem;">
|
811 |
<?php
|
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 2.50.1 =
|
2 |
* Small fixes
|
3 |
* Changed the layout of the views page.
|
1 |
+
= 2.50.2 =
|
2 |
+
* Fixed fatal error
|
3 |
+
|
4 |
= 2.50.1 =
|
5 |
* Small fixes
|
6 |
* Changed the layout of the views page.
|
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.50.
|
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.50.2
|
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.50.
|
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.50.
|
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.50.2
|
9 |
* Text Domain: strong-testimonials
|
10 |
* Domain Path: /languages
|
11 |
* Requires: 4.6 or higher
|
44 |
exit;
|
45 |
}
|
46 |
|
47 |
+
define( 'WPMTST_VERSION', '2.50.2' );
|
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' );
|