Version Description
= 2.19.6 =
- Enable Video also means enable video embedding and display
= 2.19.0 =
- CSS class
.title
is now.job-title
. Thank you Mark - Please resave your WordPress Admin > Testimonials > Settings so that missing aoptions are included again.
- Shortcode and theme function
testimonialswidget_list
being deprecated bytestimonials
- Shortcode and theme function
testimonialswidget_widget
being deprecated bytestimonials_slider
= 2.18.3 =
- CSS class
.hide
renamed.display-none
- This is the last version supporting pre-bxSlider options
= 2.18.2 =
- CSS class
.display-none
renamed.hide
= 2.18.1 =
- CSS is back to being always loaded in the header
- Removed "Use bxSlider?" and "Include IE7 CSS" from widget options
= 2.18.0 =
-
remove_hentry
is now true by default
= 2.16.0 =
- Requires PHP 5.3+
= 2.15.0 =
- If upgrading, bxSlider will not be enabled by default. You must enable it in your widget and global settings. CSS customizations must be reviewed to have the
.active
and.display-none
classes removed. The main.testimonials-widget-testimonial
class also need thedisplay: none;
andclear: left;
removed.
= 2.14.0 =
- 60 modifications See Changelog
- CSS wp_register_style and wp_enqueue_style slug changed from 'testimonials-widget' to 'Testimonials_Widget'
- Gravatar image size now based upon Thumbnail size in Media Settings
- Scripts
ksort
removed. Usearray_unshift
in yourtestimonials_widget_testimonials_js
filters instead. - Testimonials > Settings, General tab, option Enable Review Schema? is enabled by default.
= 2.13.6 =
- IE 7 CSS moved to separate file. Include via Testimonials > Settings if needed
= 2.12.0 =
- CSS and JavaScript renaming
-
bottom_text
renamed tobottom-text
-
close_quote
renamed toclose-quote
-
display_none
renamed todisplay-none
-
join_location
renamed tojoin-location
-
join_title
renamed tojoin-title
-
open_quote
renamed toopen-quote
-
testimonialswidget_testimonial
renamed totestimonials-widget-testimonial
-
testimonialswidget_testimonials
renamed totestimonials-widget-testimonials
-
= 2.11.3 =
- Correct filter name
testimonials_widget_next_posts_link
totestimonials_widget_next_posts_link_text
= 2.11.0 =
- CSS class names are simplified. For the most part, other than
testimonialswidget_testimonial
removetestimonialswidget_
from the CSS class name in your CSS customizations.- Ex:
.testimonialswidget_join
becomes.join
- Ex:
.testimonialswidget_author
becomes.author
- Ex:
- Testimonials are now formatted using
blockquote
thanq
for HTML5 compliance. If you needq
tag formatting, enable it at WP Admin > Testimonials > Settings, Compatibility & Reset tab-
cite
is nowdiv.credit
-
= 2.8.0 =
- Deprecated
-
hide_author
nowhide_source
-
- Removed filters
testimonials_widget_options_update
,testimonials_widget_options_form
- Use
testimonials_widget_validate_settings
andtestimonials_widget_settings
instead
- Use
- Renamed variable and related class
widget_text
tobottom_text
= 2.7.3 =
- Quotes are no longer handled via
q
,p:before
, orp:after
CSS. It's handled via.testimonialswidget_testimonial .testimonialswidget_open_quote:before
and.testimonialswidget_testimonial .testimonialswidget_close_quote:after
- This change was made to keep consistency in how quotes were managed and to reduce the number of exception cases. In the end, this is simpler.
= 2.7.0 =
- Quotes with
keep_whitespace=true
aren't applied via CSS.testimonialswidget_testimonial q
tag anymore, but.testimonialswidget_testimonial q p:first-child:before
and.testimonialswidget_testimonial q p:last-child:after
- Widget testimonial
p
tags are no longer CSSdisplay: inline
,display: block
as expected
= 2.4.1 =
- Paging is on by default, except for widgets
= 2.0.0 =
- CSS
- Class
testimonialswidget_company
replacestestimonialswidget_source
- Class
testimonialswidget_source
replacestestimonialswidget_author
- The tighten widget display up, p tags within q are displayed inline.
- Class
- JavaScript
- The JavaScript for rotating testimonials is moved to the footer. As such, your theme requires
wp_footer()
in the footer.
- The JavaScript for rotating testimonials is moved to the footer. As such, your theme requires
- Shortcode options
-
hide_source
replaced byhide_url
-
hide_author
replaced byhide_source
-
- Testimonials
- Migration from the old custom table to new custom post type is automatically done. Import might take a few moments to complete.
- Company, URL and email details are attempted to be identified and placed properly based upon the original author and source fields. The company is "guessed" from the
author
field when there's a ", " or " of " context. If thesource
is an email, it's saved as such. Otherwise, it's assumed to be a URL. - Public testimonials are saved as Published. Non-public testimonials are marked as Private.
- Widget options
- "Show author" and "Show source" options are replaced by "Hide source" and "Hide URL" respectively. There's no backwards compatibility for these changes.
- Default
min-height
is now 250px than 150px.
Download this release
Release Info
Developer | comprock |
Plugin | Testimonials Widget |
Version | 2.19.7 |
Comparing to | |
See all releases |
Code changes from version 2.19.6 to 2.19.7
- CHANGELOG.md +3 -0
- includes/class-testimonials-widget.php +0 -1
- languages/testimonials-widget.pot +29 -29
- readme.txt +1 -1
- testimonials-widget.php +2 -2
CHANGELOG.md
CHANGED
@@ -2,6 +2,9 @@
|
|
2 |
|
3 |
## master
|
4 |
|
|
|
|
|
|
|
5 |
## 2.19.6
|
6 |
* RESOLVE #92 Embed YouTube videos in reviews
|
7 |
* Revise readme description
|
2 |
|
3 |
## master
|
4 |
|
5 |
+
## 2.19.7
|
6 |
+
* RESOLVE Testimonials content has the_content filter applied
|
7 |
+
|
8 |
## 2.19.6
|
9 |
* RESOLVE #92 Embed YouTube videos in reviews
|
10 |
* Revise readme description
|
includes/class-testimonials-widget.php
CHANGED
@@ -1067,7 +1067,6 @@ EOF;
|
|
1067 |
$testimonial_content = '';
|
1068 |
foreach ( $testimonials as $testimonial ) {
|
1069 |
$content = self::get_testimonial_html( $testimonial, $atts, $is_list, $is_first, $widget_number );
|
1070 |
-
$content = apply_filters( 'the_content', $content );
|
1071 |
if ( $target ) {
|
1072 |
$content = links_add_target( $content, $target );
|
1073 |
}
|
1067 |
$testimonial_content = '';
|
1068 |
foreach ( $testimonials as $testimonial ) {
|
1069 |
$content = self::get_testimonial_html( $testimonial, $atts, $is_list, $is_first, $widget_number );
|
|
|
1070 |
if ( $target ) {
|
1071 |
$content = links_add_target( $content, $target );
|
1072 |
}
|
languages/testimonials-widget.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Testimonials by Aihrus package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Testimonials by Aihrus 2.19.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
|
7 |
-
"POT-Creation-Date: 2014-05-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -425,31 +425,31 @@ msgstr ""
|
|
425 |
|
426 |
#: includes/class-testimonials-widget-settings.php:509
|
427 |
#: includes/class-testimonials-widget.php:586
|
428 |
-
#: includes/class-testimonials-widget.php:
|
429 |
msgid "Job Title"
|
430 |
msgstr ""
|
431 |
|
432 |
#: includes/class-testimonials-widget-settings.php:510
|
433 |
#: includes/class-testimonials-widget.php:596
|
434 |
-
#: includes/class-testimonials-widget.php:
|
435 |
msgid "Email"
|
436 |
msgstr ""
|
437 |
|
438 |
#: includes/class-testimonials-widget-settings.php:511
|
439 |
#: includes/class-testimonials-widget.php:591
|
440 |
-
#: includes/class-testimonials-widget.php:
|
441 |
msgid "Location"
|
442 |
msgstr ""
|
443 |
|
444 |
#: includes/class-testimonials-widget-settings.php:512
|
445 |
#: includes/class-testimonials-widget.php:601
|
446 |
-
#: includes/class-testimonials-widget.php:
|
447 |
msgid "Company"
|
448 |
msgstr ""
|
449 |
|
450 |
#: includes/class-testimonials-widget-settings.php:513
|
451 |
#: includes/class-testimonials-widget.php:606
|
452 |
-
#: includes/class-testimonials-widget.php:
|
453 |
msgid "URL"
|
454 |
msgstr ""
|
455 |
|
@@ -616,7 +616,7 @@ msgid "This widget's unique CSS class for styling"
|
|
616 |
msgstr ""
|
617 |
|
618 |
#: includes/class-testimonials-widget.php:144
|
619 |
-
#: includes/class-testimonials-widget.php:
|
620 |
msgid "Testimonials Shortcode Examples"
|
621 |
msgstr ""
|
622 |
|
@@ -681,8 +681,8 @@ msgid "Search Testimonials"
|
|
681 |
msgstr ""
|
682 |
|
683 |
#: includes/class-testimonials-widget.php:626
|
684 |
-
#: includes/class-testimonials-widget.php:
|
685 |
-
#: includes/class-testimonials-widget.php:
|
686 |
msgid "Testimonial"
|
687 |
msgstr ""
|
688 |
|
@@ -690,81 +690,81 @@ msgstr ""
|
|
690 |
msgid "View Testimonial"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: includes/class-testimonials-widget.php:
|
694 |
msgid "…"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/class-testimonials-widget.php:
|
698 |
msgid "«"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: includes/class-testimonials-widget.php:
|
702 |
msgid "»"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: includes/class-testimonials-widget.php:
|
706 |
msgid "Testimonial Data"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/class-testimonials-widget.php:
|
710 |
msgid "Enter title here"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/class-testimonials-widget.php:
|
714 |
msgid "Enter testimonial source here"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: includes/class-testimonials-widget.php:
|
718 |
msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/class-testimonials-widget.php:
|
722 |
msgid "Custom field updated."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/class-testimonials-widget.php:
|
726 |
msgid "Custom field deleted."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/class-testimonials-widget.php:
|
730 |
msgid "Testimonial updated."
|
731 |
msgstr ""
|
732 |
|
733 |
#. translators: %s: date and time of the revision
|
734 |
|
735 |
-
#: includes/class-testimonials-widget.php:
|
736 |
msgid "Testimonial restored to revision from %s"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: includes/class-testimonials-widget.php:
|
740 |
msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: includes/class-testimonials-widget.php:
|
744 |
msgid "Testimonial saved."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: includes/class-testimonials-widget.php:
|
748 |
msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: includes/class-testimonials-widget.php:
|
752 |
msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/class-testimonials-widget.php:
|
756 |
msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/class-testimonials-widget.php:
|
760 |
msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/class-testimonials-widget.php:
|
764 |
msgid "Failed version check"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/class-testimonials-widget.php:
|
768 |
msgid "Shortcode"
|
769 |
msgstr ""
|
770 |
|
2 |
# This file is distributed under the same license as the Testimonials by Aihrus package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Testimonials by Aihrus 2.19.7\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/testimonials-widget\n"
|
7 |
+
"POT-Creation-Date: 2014-05-19 14:02:21+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
425 |
|
426 |
#: includes/class-testimonials-widget-settings.php:509
|
427 |
#: includes/class-testimonials-widget.php:586
|
428 |
+
#: includes/class-testimonials-widget.php:1713
|
429 |
msgid "Job Title"
|
430 |
msgstr ""
|
431 |
|
432 |
#: includes/class-testimonials-widget-settings.php:510
|
433 |
#: includes/class-testimonials-widget.php:596
|
434 |
+
#: includes/class-testimonials-widget.php:1725
|
435 |
msgid "Email"
|
436 |
msgstr ""
|
437 |
|
438 |
#: includes/class-testimonials-widget-settings.php:511
|
439 |
#: includes/class-testimonials-widget.php:591
|
440 |
+
#: includes/class-testimonials-widget.php:1719
|
441 |
msgid "Location"
|
442 |
msgstr ""
|
443 |
|
444 |
#: includes/class-testimonials-widget-settings.php:512
|
445 |
#: includes/class-testimonials-widget.php:601
|
446 |
+
#: includes/class-testimonials-widget.php:1731
|
447 |
msgid "Company"
|
448 |
msgstr ""
|
449 |
|
450 |
#: includes/class-testimonials-widget-settings.php:513
|
451 |
#: includes/class-testimonials-widget.php:606
|
452 |
+
#: includes/class-testimonials-widget.php:1737
|
453 |
msgid "URL"
|
454 |
msgstr ""
|
455 |
|
616 |
msgstr ""
|
617 |
|
618 |
#: includes/class-testimonials-widget.php:144
|
619 |
+
#: includes/class-testimonials-widget.php:2080
|
620 |
msgid "Testimonials Shortcode Examples"
|
621 |
msgstr ""
|
622 |
|
681 |
msgstr ""
|
682 |
|
683 |
#: includes/class-testimonials-widget.php:626
|
684 |
+
#: includes/class-testimonials-widget.php:1825
|
685 |
+
#: includes/class-testimonials-widget.php:2209
|
686 |
msgid "Testimonial"
|
687 |
msgstr ""
|
688 |
|
690 |
msgid "View Testimonial"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: includes/class-testimonials-widget.php:1222
|
694 |
msgid "…"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: includes/class-testimonials-widget.php:1438
|
698 |
msgid "«"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: includes/class-testimonials-widget.php:1446
|
702 |
msgid "»"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: includes/class-testimonials-widget.php:1749
|
706 |
msgid "Testimonial Data"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: includes/class-testimonials-widget.php:1774
|
710 |
msgid "Enter title here"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: includes/class-testimonials-widget.php:1775
|
714 |
msgid "Enter testimonial source here"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/class-testimonials-widget.php:1800
|
718 |
msgid "Testimonial updated. <a href=\"%s\">View testimonial</a>"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/class-testimonials-widget.php:1801
|
722 |
msgid "Custom field updated."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: includes/class-testimonials-widget.php:1802
|
726 |
msgid "Custom field deleted."
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: includes/class-testimonials-widget.php:1803
|
730 |
msgid "Testimonial updated."
|
731 |
msgstr ""
|
732 |
|
733 |
#. translators: %s: date and time of the revision
|
734 |
|
735 |
+
#: includes/class-testimonials-widget.php:1805
|
736 |
msgid "Testimonial restored to revision from %s"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: includes/class-testimonials-widget.php:1806
|
740 |
msgid "Testimonial published. <a href=\"%s\">View testimonial</a>"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: includes/class-testimonials-widget.php:1807
|
744 |
msgid "Testimonial saved."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/class-testimonials-widget.php:1808
|
748 |
msgid "Testimonial submitted. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: includes/class-testimonials-widget.php:1809
|
752 |
msgid "Testimonial scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview testimonial</a>"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/class-testimonials-widget.php:1810
|
756 |
msgid "Testimonial draft updated. <a target=\"_blank\" href=\"%s\">Preview testimonial</a>"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: includes/class-testimonials-widget.php:2071
|
760 |
msgid "If your Testimonials display has gone to funky town, please <a href=\"%s\">read the FAQ</a> about possible fixes."
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: includes/class-testimonials-widget.php:2126
|
764 |
msgid "Failed version check"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: includes/class-testimonials-widget.php:2157
|
768 |
msgid "Shortcode"
|
769 |
msgstr ""
|
770 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: http://aihr.us/about-aihrus/donate/
|
|
5 |
Tags: client, customer, portfolio, quotations, quote, quotes, random, recommendation, reference, review, reviews, testimonial, testimonials, testimony, wpml
|
6 |
Requires at least: 3.6
|
7 |
Tested up to: 4.0.0
|
8 |
-
Stable tag: 2.19.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
5 |
Tags: client, customer, portfolio, quotations, quote, quotes, random, recommendation, reference, review, reviews, testimonial, testimonials, testimony, wpml
|
6 |
Requires at least: 3.6
|
7 |
Tested up to: 4.0.0
|
8 |
+
Stable tag: 2.19.7
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
testimonials-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Testimonials by Aihrus
|
4 |
* Plugin URI: http://wordpress.org/plugins/testimonials-widget/
|
5 |
* Description: Testimonials by Aihrus lets you randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
|
6 |
-
* Version: 2.19.
|
7 |
* Author: Michael Cannon
|
8 |
* Author URI: http://aihr.us/resume/
|
9 |
* License: GPLv2 or later
|
@@ -52,7 +52,7 @@ if ( ! defined( 'TW_PREMIUM_LINK' ) )
|
|
52 |
define( 'TW_PREMIUM_LINK', '<a href="http://aihr.us/downloads/testimonials-widget-premium-wordpress-plugin/">Buy Premium</a>' );
|
53 |
|
54 |
if ( ! defined( 'TW_VERSION' ) )
|
55 |
-
define( 'TW_VERSION', '2.19.
|
56 |
|
57 |
require_once TW_DIR_INC . 'requirements.php';
|
58 |
|
3 |
* Plugin Name: Testimonials by Aihrus
|
4 |
* Plugin URI: http://wordpress.org/plugins/testimonials-widget/
|
5 |
* Description: Testimonials by Aihrus lets you randomly slide or list selected portfolios, quotes, reviews, or text with images or videos on your WordPress site.
|
6 |
+
* Version: 2.19.7
|
7 |
* Author: Michael Cannon
|
8 |
* Author URI: http://aihr.us/resume/
|
9 |
* License: GPLv2 or later
|
52 |
define( 'TW_PREMIUM_LINK', '<a href="http://aihr.us/downloads/testimonials-widget-premium-wordpress-plugin/">Buy Premium</a>' );
|
53 |
|
54 |
if ( ! defined( 'TW_VERSION' ) )
|
55 |
+
define( 'TW_VERSION', '2.19.7' );
|
56 |
|
57 |
require_once TW_DIR_INC . 'requirements.php';
|
58 |
|